htils 1
A small set of utilities for C programming.
Loading...
Searching...
No Matches
h2otils.h
Go to the documentation of this file.
1#ifndef H2OTILS_H
2#define H2OTILS_H
3
4#ifndef H2OTILS_NO_TYPES
5#include <htils/basictypes.h>
6#endif // !H2OTILS_NO_TYPES
7
8#ifdef H2OTILS_USE_ALL
9#include <h2otils/cookie.h>
10#include <h2otils/darray.h>
11#include <h2otils/string.h>
12#include <h2otils/stringmap.h>
13#include <h2otils/test.h>
14#endif // !H2OTILS_USE_ALL
15
16#if defined(H2OTILS_USE_MUSTHAVES) || defined(H2OTILS_USE_STRING)
17#include <h2otils/string.h>
18#endif // !H2OTILS_USE_MUSTHAVES
19
20#ifdef H2OTILS_USE_COOKIE
21#include <h2otils/cookie.h>
22#endif // !H2OTILS_USE_COOKIE
23
24#ifdef H2OTILS_USE_DARRAY
25#include <h2otils/darray.h>
26#endif // !H2OTILS_USE_DARRAY
27
28#ifdef H2OTILS_USE_STRINGMAP
29#include <h2otils/stringmap.h>
30#endif // !H2OTILS_USE_STRINGMAP
31
32#ifdef H2OTILS_USE_TEST
33#include <h2otils/test.h>
34#endif // !H2OTILS_USE_TEST
35
36#endif // !H2OTILS_H