Paparazzi UAS  v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
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
uint16_t
unsigned short uint16_t
Definition: types.h:16
uint32_t
unsigned long uint32_t
Definition: types.h:18
boolean
boolean
Definition: types.h:23
int64_t
signed long long int64_t
Definition: types.h:21
False
@ False
Definition: types.h:23
int16_t
signed short int16_t
Definition: types.h:17
uint8_t
unsigned char uint8_t
Definition: types.h:14
int8_t
signed char int8_t
Definition: types.h:15
int32_t
signed long int32_t
Definition: types.h:19
True
@ True
Definition: types.h:23
uint64_t
unsigned long long uint64_t
Definition: types.h:20