plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

lib9.h (329B)


      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;