Add strtoull wrapper for VS2010, pointing to MS implementation

This commit is contained in:
baldurk 2016-10-13 19:24:23 +02:00
parent 54a28de4a9
commit 75c3bf68e9

View file

@ -68,6 +68,10 @@ inline long long int strtoll (const char* str, char** endptr, int base)
{
return _strtoi64(str, endptr, base);
}
inline unsigned long long int strtoull (const char* str, char** endptr, int base)
{
return _strtoui64(str, endptr, base);
}
inline long long int atoll (const char* str)
{
return strtoll(str, NULL, 10);