blob: abe76609ce16ee7721acaecbc170ab12b196936d [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
18#define NULL ((void *)0)