roneos
Operating System for the r-one robot
 All Data Structures Files Functions Variables Typedefs Groups
typedefs.h
Go to the documentation of this file.
1 
11 #ifndef MRONE_H_
12 #define MRONE_H_
13 
14 typedef signed char int8;
15 typedef short int int16;
16 typedef long int32;
17 
18 typedef unsigned char uint8;
19 typedef unsigned short int uint16;
20 typedef unsigned long uint32;
21 
22 typedef unsigned char boolean;
23 
24 #define FALSE 0
25 #define TRUE 1
26 
27 #endif /* MRONE_H_ */