Common.h 551 B

1234567891011121314151617
  1. #ifndef __COMMON_H__
  2. #define __COMMON_H__
  3. /*---------------------------------------------------------------------------*/
  4. /* Type Definition Macros */
  5. /*---------------------------------------------------------------------------*/
  6. typedef _Bool uint1;
  7. typedef unsigned char uint8;
  8. typedef char int8;
  9. typedef unsigned short uint16;
  10. typedef short int16;
  11. typedef unsigned int uint32;
  12. typedef int int32;
  13. typedef unsigned int size_t;
  14. #endif /* __COMMON_H__ */