15 lines
309 B
C
15 lines
309 B
C
|
|
#ifndef WCHAR_H_
|
||
|
|
#define WCHAR_H_
|
||
|
|
|
||
|
|
#include <stdio.h>
|
||
|
|
#include <stdarg.h>
|
||
|
|
|
||
|
|
typedef unsigned int wchar_t;
|
||
|
|
|
||
|
|
extern int fwide(FILE *fp, int mode);
|
||
|
|
|
||
|
|
extern int vfwprintf(FILE *stream, const wchar_t *format, va_list arg);
|
||
|
|
extern int vswprintf(wchar_t *buf, size_t len, const wchar_t *format, va_list arg);
|
||
|
|
|
||
|
|
#endif
|