diff options
Diffstat (limited to 'src/common/strlib.h')
-rw-r--r-- | src/common/strlib.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/strlib.h b/src/common/strlib.h index 42034e4c1..29af06015 100644 --- a/src/common/strlib.h +++ b/src/common/strlib.h @@ -28,6 +28,10 @@ char* _strtok_r(char* s1, const char* s2, char** lasts); size_t strnlen (const char* string, size_t maxlen); #endif +#if defined(WIN32) && defined(_MSC_VER) && _MSC_VER <= 1200 +unsigned long long strtoull(const char* str, char** endptr, int base); +#endif + int e_mail_check(char* email); int config_switch(const char* str); |