DuQuad  v1.0
Quadratic Programming Optimizations
 All Data Structures Files Functions Variables Typedefs Macros
typedefs.h
Go to the documentation of this file.
1 /*
2  * typedefs.h
3  *
4  * Created on: Sep 26, 2014
5  * Author: sverre
6  */
7 
8 #ifndef TYPEDEFS_H_
9 #define TYPEDEFS_H_
10 
11 typedef char char_t;
12 
13 typedef signed char int8_t;
14 typedef signed short int16_t;
15 typedef signed int int32_t;
16 
17 typedef unsigned char uint8_t;
18 typedef unsigned short uint16_t;
19 typedef unsigned int uint32_t;
20 
21 typedef float float32_t;
22 typedef double float64_t;
23 
24 typedef uint32_t boolean;
25 typedef float64_t real_t;
26 
27 
28 #endif /* TYPEDEFS_H_ */
unsigned int uint32_t
Definition: typedefs.h:19
double float64_t
Definition: typedefs.h:22
unsigned short uint16_t
Definition: typedefs.h:18
uint32_t boolean
Definition: typedefs.h:24
signed int int32_t
Definition: typedefs.h:15
float float32_t
Definition: typedefs.h:21
float64_t real_t
Definition: typedefs.h:25
signed char int8_t
Definition: typedefs.h:13
signed short int16_t
Definition: typedefs.h:14
unsigned char uint8_t
Definition: typedefs.h:17
char char_t
Definition: typedefs.h:11