Go to the documentation of this file.00001
00004 #ifndef DEFINITIONS_H
00005 #define DEFINITIONS_H
00006
00007
00008 #define @DEF_DEBUG@
00009 #define @DEF_PLOTTER@
00010 #define @DEF_MATIO@
00011 #define @DEF_EXPERIMENTAL@
00012 #define @DEF_ANSI_ESCAPE_CODES@
00013 #define @DEF_MATLAB@
00014
00015 #define ALLOC_IN_FCT NULL
00016
00017 #define MAX_LABEL_LENGTH 40
00018
00019 #define SEED_RANDOM 0
00021 #if HAVE_STDBOOL_H
00022
00023 #include <stdbool.h>
00024
00025 #else
00026
00027 #ifndef __cplusplus
00028
00029 #define bool _Bool
00030 #define true 1
00031 #define false 0
00032
00033 #else
00034
00035
00036 #ifndef bool
00037 #define _Bool bool
00038 #define bool bool
00039 #endif
00040
00041 #ifndef false
00042 #define false false
00043 #endif
00044
00045 #ifndef true
00046 #define true true
00047 #endif
00048
00049 #endif
00050
00051
00052 #define __bool_true_false_are_defined 1
00053
00054 #endif
00055
00056 #define FALSE false
00057 #define TRUE true
00058
00059 typedef unsigned int uint;
00060 typedef unsigned long ulong;
00061 typedef unsigned long long ulonglong;
00062
00063
00064 #ifdef __cplusplus
00065 }
00066 #endif
00067
00068 #endif