mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
15 lines
250 B
C
15 lines
250 B
C
#ifndef MSL_WPRINTF_H
|
|
#define MSL_WPRINTF_H
|
|
#include <types.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int vswprintf(wchar_t*, size_t, const wchar_t*, va_list);
|
|
int swprintf(wchar_t*, size_t, const wchar_t*, ...);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|