mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
- MFB: strtoi64 forward compatible replacement for VC6
This commit is contained in:
parent
17c0c53c8c
commit
a4e137f844
3 changed files with 134 additions and 0 deletions
7
win32/php_strtoi64.h
Normal file
7
win32/php_strtoi64.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue