Blame


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