Use Client_find_by_session() instead of a few open-coded loops.
[umurmur.git] / src / types.h
1 #ifndef TYPES_H_90878954
2 #define TYPES_H_90878954
3
4 #if __STDC_VERSION__ >= 199901L
5
6 #include <stdbool.h>
7 typedef bool bool_t;
8
9 #else // __STDC_VERSION__
10
11 typedef enum {
12         false,
13         true
14 } bool_t;
15
16 #endif // __STDC_VERSION
17
18 #endif
19