blob: 01844434ab30c2e9122f3560a64941fd6d659edc [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
8typedef unsigned long long size_t;
swissChili0b35bf22021-02-18 12:49:40 -08009
10typedef uchar bool;
11
12enum
13{
14 false = 0,
15 true,
16};