wchar.h 224 B

123456789101112
  1. #ifndef _BITS_WCHAR_H
  2. #define _BITS_WCHAR_H
  3. #include <stdint.h>
  4. #define WEOF (0xffffffffu)
  5. #define WCHAR_MIN (0)
  6. #define WCHAR_MAX (0x7fffffff)
  7. typedef int32_t wchar_t;
  8. typedef uint32_t wint_t;
  9. #endif /* _BITS_WCHAR_H */