blob: abe76609ce16ee7721acaecbc170ab12b196936d [file] [log] [blame]
#pragma once
typedef unsigned char uchar;
typedef unsigned short ushort;
typedef unsigned int uint;
typedef unsigned long ulong;
typedef unsigned long size_t;
typedef uchar bool;
enum
{
false = 0,
true,
};
#define NULL ((void *)0)