blob: a20052618b8d0ae45fe0be066b97ce35aec9cd88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef TYPES_H
#define TYPES_H
typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef signed short int16_t;
typedef unsigned short uint16_t;
typedef signed int int32_t;
typedef unsigned int uint32_t;
typedef enum {false, true} bool;
#endif
|