2015-01-23 06:06:24 +00:00
|
|
|
#ifndef __TYPES_H__
|
|
|
|
#define __TYPES_H__
|
|
|
|
|
2015-01-24 02:37:10 +00:00
|
|
|
#include <stddef.h>
|
2015-01-23 06:06:24 +00:00
|
|
|
#include <stdint.h>
|
2015-01-24 02:37:10 +00:00
|
|
|
#include <stdbool.h>
|
2015-01-23 06:06:24 +00:00
|
|
|
|
|
|
|
typedef uint8_t u8;
|
|
|
|
typedef uint16_t u16;
|
|
|
|
typedef uint32_t u32;
|
|
|
|
typedef uint64_t u64;
|
|
|
|
|
|
|
|
#endif
|