config.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include <stdio.h>
00025 #include <stdlib.h>
00026 #include <string.h>
00027 #include <stdarg.h>
00028 #include <ctype.h>
00029
00030
00031
00032
00033
00034
00035 #define MXML_VERSION "Mini-XML v2.5"
00036
00037 #ifdef DEBUG
00038 #ifndef MXML_DEBUG
00039 #undef DEBUG
00040 #endif
00041 #endif
00042
00043
00044
00045
00046
00047 #define inline
00048
00049
00050
00051
00052
00053
00054 #define HAVE_SNPRINTF 1
00055 #define HAVE_VSNPRINTF 1
00056
00057
00058
00059
00060
00061
00062 #define HAVE_STRDUP 1
00063
00064
00065
00066
00067
00068
00069 #if defined(WIN32) || defined(_WIN32)
00070 #else
00071 # define HAVE_PTHREAD_H 1
00072 #endif
00073
00074
00075
00076
00077
00078 # ifndef HAVE_STRDUP
00079 extern char *_mxml_strdup(const char *);
00080 # define strdup _mxml_strdup
00081 # endif
00082
00083 extern char *_mxml_strdupf(const char *, ...);
00084 extern char *_mxml_vstrdupf(const char *, va_list);
00085
00086 # ifndef HAVE_SNPRINTF
00087 extern int _mxml_snprintf(char *, size_t, const char *, ...);
00088 # define snprintf _mxml_snprintf
00089 # endif
00090
00091 # ifndef HAVE_VSNPRINTF
00092 extern int _mxml_vsnprintf(char *, size_t, const char *, va_list);
00093 # define vsnprintf _mxml_vsnprintf
00094 # endif