LiteSQL
compatibility.hpp
1 #ifndef compatibility_hpp
2 #define compatibility_hpp
3 #include "config.h"
4 
5 #ifdef HAVE_MEMORY_H
6 #include <memory.h>
7 #endif // #ifdef HAVE_MEMORY_H
8 
9 #ifndef HAVE_STRTOLL
10 long long int strtoll(const char *nptr, char **endptr, int base);
11 #endif
12 
13 #ifndef HAVE_STRTOF
14 float strtof (const char *nptr, char **endptr);
15 #endif
16 
17 #ifndef HAVE_LOCALTIME_R
18 #ifdef WIN32
19 #include <time.h>
20 #endif
21 struct tm *localtime_r(const time_t *clock, struct tm *result);
22 #endif
23 
24 #ifdef WIN32
25 #if _MSC_VER < 1700
26 #define snprintf _snprintf
27 #endif
28 #endif
29 
30 #endif

SourceForge.net Logo