about summary refs log tree commit diff
path: root/include/types.h
blob: 9c92d57c83b08866c6670852cb144ec1bfeb5a57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __TYPES_H__
#define __TYPES_H__

#include <stdint.h>


typedef char     s8;

typedef uint8_t  u8;
typedef uint16_t u16;
typedef uint32_t u32;

typedef int8_t   i8;
typedef int16_t  i16;
typedef int32_t  i32;

#endif /* __TYPES_H__ */