| 12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef _OS_Type_H__
- #define _OS_Type_H__
- #include <string.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <stdint.h>
- #include <stdbool.h>
- #ifndef TRUE
- #define TRUE 1
- #endif
- #ifndef FALSE
- #define FALSE 0
- #endif
- typedef uint8_t u8;
- typedef uint16_t u16;
- typedef uint32_t u24;
- typedef uint32_t u32;
- typedef uint64_t u64;
- typedef int8_t s8;
- typedef int16_t s16;
- typedef int32_t s24;
- typedef int32_t s32;
- typedef int64_t s64;
- typedef signed char int8;
- typedef signed short int16;
- typedef signed int int32;
- typedef unsigned char uint8;
- typedef unsigned short uint16;
- typedef unsigned int uint32;
- #endif /* _OS_Type_H__ */
|