Git init
[pkgs/e/elektra.git] / src / libhelper / helper.h
1 #ifndef HELPERS_H
2 #define HELPERS_H
3
4 #ifdef HAVE_CONFIG_H
5 #include "config.h"
6 #endif
7
8 #ifdef HAVE_UNISTD_H
9 #include <unistd.h>
10 #endif
11
12 #ifdef HAVE_ICONV
13 #include <iconv.h>
14 #endif
15
16 #ifdef HAVE_LOCALE_H
17 #include <locale.h>
18 #endif
19
20 #ifdef HAVE_LANGINFO_H
21 #include <langinfo.h>
22 #endif
23
24 #ifdef HAVE_SYS_TYPES_H
25 #include <sys/types.h>
26 #endif
27
28 #ifdef HAVE_SYS_STAT_H
29 #include <sys/stat.h>
30 #endif
31
32 #ifdef HAVE_SYS_TYPES_H
33 #include <sys/types.h>
34 #endif
35
36 #ifdef HAVE_FCNTL_H
37 #include <fcntl.h>
38 #endif
39
40 #ifdef HAVE_STDIO_H
41 #include <stdio.h>
42 #endif
43
44 #ifdef HAVE_CTYPE_H
45 #include <ctype.h>
46 #endif
47
48 #ifdef HAVE_STRING_H
49 #include <string.h>
50 #endif
51
52 #ifdef HAVE_STDLIB_H
53 #include <stdlib.h>
54 #endif
55
56 #include <kdbbackend.h>
57
58 #endif
59