1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef _TYPES_H_ #define _TYPES_H_ #include <stdint.h> #include <stdbool.h> typedef unsigned char uchar; typedef unsigned short ushort; typedef unsigned int uint; typedef unsigned long ulong; #define NULL 0 #endif