- MFB: strtoi64 forward compatible replacement for VC6

This commit is contained in:
Pierre Joye 2008-11-07 13:11:35 +00:00
parent 17c0c53c8c
commit a4e137f844
3 changed files with 134 additions and 0 deletions

7
win32/php_strtoi64.h Normal file
View file

@ -0,0 +1,7 @@
#if _MSC_VERS <= 1300
#include "php.h"
#include "php_stdint.h"
PHPAPI int64_t _strtoi64(const char *nptr, char **endptr, int base);
#define _strtoui64 _strtoi64
#endif