11 lines
155 B
C
11 lines
155 B
C
![]() |
#ifndef __TYPES_H__
|
||
|
#define __TYPES_H__
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
typedef uint8_t u8;
|
||
|
typedef uint16_t u16;
|
||
|
typedef uint32_t u32;
|
||
|
typedef uint64_t u64;
|
||
|
|
||
|
#endif
|