VSF Documented
types.h
Go to the documentation of this file.
1#ifndef __TYPES_H__
2#define __TYPES_H__
3
4#include <sys/types.h>
5
6typedef signed char s8_t;
7typedef unsigned char u8_t;
8
9typedef signed short s16_t;
10typedef unsigned short u16_t;
11
12typedef signed long s32_t;
13typedef unsigned long u32_t;
14
15typedef signed long long s64_t;
16typedef unsigned long long u64_t;
17
18typedef int bool_t;
19
20#endif // __TYPES_H__
unsigned long long u64_t
Definition types.h:16
signed short s16_t
Definition types.h:9
signed long long s64_t
Definition types.h:15
int bool_t
Definition types.h:18
signed long s32_t
Definition types.h:12
signed char s8_t
Definition types.h:6
unsigned long u32_t
Definition types.h:13
unsigned char u8_t
Definition types.h:7
unsigned short u16_t
Definition types.h:10