Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
Loading...
Searching...
No Matches
wprintf.h
Go to the documentation of this file.
1#ifndef _MSL_COMMON_WPRINTF_H
2#define _MSL_COMMON_WPRINTF_H
3
4#include <wstring.h>
5#include <cstddef>
6#include <cstdarg>
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12int swprintf(wchar_t *dst, size_t maxlen, const wchar_t *fmt, ...);
13
14int vsnwprintf_s(wchar_t* str, size_t n, const wchar_t* fmt, va_list args);
15
16#ifdef __cplusplus
17}
18#endif
19
20#endif /* _MSL_COMMON_WPRINTF_H */
n
Definition e_fmod.c:115
int swprintf(wchar_t *dst, size_t maxlen, const wchar_t *fmt,...)
Definition wprintf.c:1358
int vsnwprintf_s(wchar_t *str, size_t n, const wchar_t *fmt, va_list args)
Definition wprintf.c:1381