Paparazzi UAS  v5.15_devel-230-gc96ce27
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
types.h
Go to the documentation of this file.
1 /******************************************************************************
2  *
3  * $RCSfile$
4  * $Revision$
5  *
6  * This module defines some regularly used typedefs
7  *
8  *****************************************************************************/
9 
10 #ifndef INC_TYPES_H
11 #define INC_TYPES_H
12 
13 /* typedefs are here */
14 typedef unsigned char uint8_t;
15 typedef signed char int8_t;
16 typedef unsigned short uint16_t;
17 typedef signed short int16_t;
18 typedef unsigned long uint32_t;
19 typedef signed long int32_t;
20 typedef unsigned long long uint64_t;
21 typedef signed long long int64_t;
22 
23 typedef enum {False, True} boolean;
24 
25 #endif
unsigned short uint16_t
Definition: types.h:16
signed long long int64_t
Definition: types.h:21
Definition: types.h:23
unsigned long long uint64_t
Definition: types.h:20
unsigned long uint32_t
Definition: types.h:18
signed short int16_t
Definition: types.h:17
signed long int32_t
Definition: types.h:19
Definition: types.h:23
unsigned char uint8_t
Definition: types.h:14
boolean
Definition: types.h:23
signed char int8_t
Definition: types.h:15