xref: /plan9/sys/src/ape/lib/utf/lib9.h (revision 40ef9009116dd37656783aaadc8782c1d8bfb056)
1 #include <string.h>
2 #include "utf.h"
3 
4 #define nil ((void*)0)
5 
6 #define uchar _fmtuchar
7 #define ushort _fmtushort
8 #define uint _fmtuint
9 #define ulong _fmtulong
10 #define vlong _fmtvlong
11 #define uvlong _fmtuvlong
12 
13 typedef unsigned char		uchar;
14 typedef unsigned short		ushort;
15 typedef unsigned int		uint;
16 typedef unsigned long		ulong;
17 
18