12 lines
360 B
C
Raw Normal View History

2024-11-12 20:28:26 +02:00
#ifndef _YGGDRASIL_WCHAR_H
#define _YGGDRASIL_WCHAR_H 1
int fwprintf(FILE *fp, const wchar_t *fmt, ...);
int fwscanf(FILE *fp, const wchar_t *fmt, ...);
int swprintf(wchar_t *buf, size_t len, const wchar_t *fmt, ...);
int swscanf(const wchar_t *buf, const wchar_t *fmt, ...);
int wprintf(const wchar_t *fmt, ...);
int wscanf(const wchar_t *fmt, ...);
#endif