COBE 0.1 ALPHA
|
00001 #ifndef STDINT_H 00002 #define STDINT_H 00003 00004 #define true 1 00005 #define false 0 00006 00007 typedef unsigned char uint8_t; 00008 typedef unsigned short uint16_t; 00009 typedef unsigned int uint32_t; 00010 typedef unsigned int size_t; 00011 typedef unsigned long long uint64_t; 00012 typedef signed long long int64_t; 00013 typedef signed int int32_t; 00014 typedef signed short int16_t; 00015 typedef signed char int8_t; 00016 typedef unsigned int uintptr_t; 00017 typedef unsigned char bool; 00018 00019 #endif