20 lines
441 B
C
Raw Normal View History

2024-11-12 20:28:26 +02:00
#ifndef _YGGDRASIL_WCHAR_H
#define _YGGDRASIL_WCHAR_H 1
2024-11-15 11:14:08 +02:00
#if defined(__cplusplus)
extern "C" {
#endif
2024-11-12 20:28:26 +02:00
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, ...);
2024-11-15 11:14:08 +02:00
#if defined(__cplusplus)
}
#endif
2024-11-12 20:28:26 +02:00
#endif