blob: 44b9bfd83d4401740fd11ff2a6701951f4001b08 [file] [log] [blame]
swissChilid8137922021-02-17 15:34:07 -08001#pragma once
2
3typedef unsigned char uchar;
4typedef unsigned short ushort;
5typedef unsigned int uint;
6typedef unsigned long ulong;
7
swissChili825d46b2021-02-21 10:14:16 -08008typedef unsigned long size_t;
swissChili0b35bf22021-02-18 12:49:40 -08009
10typedef uchar bool;
11
12enum
13{
14 false = 0,
15 true,
16};
swissChili825d46b2021-02-21 10:14:16 -080017
swissChili19ef4182021-02-21 17:45:51 -080018#define NULL 0