wchar support

This commit is contained in:
Stephan Vedder
2018-07-01 20:59:37 +02:00
committed by jD91mZM2
parent fb09b03acf
commit cc210361d6
34 changed files with 840 additions and 669 deletions
+5 -2
View File
@@ -1,7 +1,10 @@
#ifndef _BITS_WCHAR_H
#define _BITS_WCHAR_H
#include <stdint.h>
typedef signed short wchar_t;
typedef signed int wint_t;
#define WEOF (0xFFFFFFFFu)
typedef int32_t wchar_t;
typedef uint32_t wint_t;
#endif /* _BITS_WCHAR_H */