utfdef.h 335 B

1234567891011121314
  1. #define uchar _utfuchar
  2. #define ushort _utfushort
  3. #define uint _utfuint
  4. #define ulong _utfulong
  5. #define vlong _utfvlong
  6. #define uvlong _utfuvlong
  7. typedef unsigned char uchar;
  8. typedef unsigned short ushort;
  9. typedef unsigned int uint;
  10. typedef unsigned long ulong;
  11. #define nelem(x) (sizeof(x)/sizeof((x)[0]))
  12. #define nil ((void*)0)