blob: 6dc82b0833d34d1c0ba7e0189e09ee264caed56e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _WCHAR_H_
#define _WCHAR_H_
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
int fwide(FILE* stream, int mode);
#ifdef __cplusplus
}
#endif
#endif
|