2016-01-27 16:42:15 +01:00
|
|
|
#ifndef TYPES_H
|
|
|
|
#define TYPES_H
|
2015-01-23 07:06:24 +01:00
|
|
|
|
2015-01-24 03:37:10 +01:00
|
|
|
#include <stddef.h>
|
2015-01-23 07:06:24 +01:00
|
|
|
#include <stdint.h>
|
2015-01-24 03:37:10 +01:00
|
|
|
#include <stdbool.h>
|
2015-01-23 07:06:24 +01:00
|
|
|
|
2017-02-18 08:47:03 +01:00
|
|
|
#include <string>
|
|
|
|
|
2015-01-23 07:06:24 +01:00
|
|
|
typedef uint8_t u8;
|
|
|
|
typedef uint16_t u16;
|
|
|
|
typedef uint32_t u32;
|
|
|
|
typedef uint64_t u64;
|
|
|
|
|
|
|
|
#endif
|