gerbv  2.6A
csv_defines.h
Go to the documentation of this file.
1 #ifndef DEFINES_H
2 #define DEFINES_H
3 
8 #if defined(__sparc__)
9 
10 #define HAVE_ENCDEC 0
11 #define HAVE_STRDUP 1
12 #define HAVE_STRNLEN 0
13 #define HAVE_EXPAT 0
14 #define HAVE_MBSTATE 0
15 #define HAVE_WCWIDTH 1
16 #define HAVE_SNPRINTF 1
17 #define HAVE_VSNPRINTF 1
18 #define HAVE_VARMACRO 1
19 #define HAVE_LANGINFO 1
20 
21 #elif defined(_WIN32)
22 
23 #define HAVE_ENCDEC 0
24 #define HAVE_STRDUP 1
25 #define HAVE_STRNLEN 0
26 #define HAVE_EXPAT 0
27 #define HAVE_MBSTATE 0
28 #define HAVE_WCWIDTH 0
29 #define HAVE_SNPRINTF 0
30 #define HAVE_VSNPRINTF 0
31 #define HAVE_VARMACRO 0
32 #define HAVE_LANGINFO 0
33 
34 #else
35 
36 #define HAVE_ENCDEC 0
37 #define HAVE_STRDUP 1
38 #define HAVE_STRNLEN 1
39 #define HAVE_EXPAT 0
40 #define HAVE_MBSTATE 1
41 #define HAVE_WCWIDTH 1
42 #define HAVE_SNPRINTF 1
43 #define HAVE_VSNPRINTF 0
44 #define HAVE_VARMACRO 1
45 #define HAVE_LANGINFO 1
46 
47 #endif
48 
49 #ifdef __GNUC__
50 #define UNUSED __attribute__ ((unused))
51 #else
52 #define UNUSED
53 #endif
54 
55 #endif /* DEFINES_H */