mirror of
https://github.com/zeldaret/ss
synced 2026-05-28 00:15:59 -04:00
15 lines
255 B
C
15 lines
255 B
C
#ifndef MSL_WPRINTF_H
|
|
#define MSL_WPRINTF_H
|
|
#include <common.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
|