]> rtime.felk.cvut.cz Git - pes-rpp/rpp-lib.git/blob - rpp/include/base.h
Excluding from Git annoying preference files that are deleted and regenerated constantly.
[pes-rpp/rpp-lib.git] / rpp / include / base.h
1 /**
2  * Base common includes to all RPP library.
3  *
4  * @file base.h
5  *
6  * @copyright Copyright (C) 2013 Czech Technical University in Prague
7  *
8  * @author Carlos Jenkins <carlos@jenkins.co.cr>
9  */
10
11 #ifndef __BASE_H
12 #define __BASE_H
13
14 // Base includes
15 #include "os/os.h"
16 #include "types.h"
17 #include "binary.h"
18
19 // General IO directives
20 #define MAX_BUFFER_LEN 128
21
22 // Debug directives
23 #define DEBUG
24 #define UNUSED(x) (void)(x)
25 #ifdef DEBUG
26 #  define D(x) x
27 #else
28 #  define D(x)
29 #endif
30
31 #endif /* __BASE_H */