lib9.h 330 B

1234567891011121314151617
  1. #include <string.h>
  2. #include "utf.h"
  3. #define nil ((void*)0)
  4. #define uchar _fmtuchar
  5. #define ushort _fmtushort
  6. #define uint _fmtuint
  7. #define ulong _fmtulong
  8. #define vlong _fmtvlong
  9. #define uvlong _fmtuvlong
  10. typedef unsigned char uchar;
  11. typedef unsigned short ushort;
  12. typedef unsigned int uint;
  13. typedef unsigned long ulong;