| 91 | |
| 92 | #if defined( _WIN32 ) && _MSC_VER < 1800 |
| 93 | inline uint64_t strtoull(const char *str, char **endptr, int base) { return _strtoui64( str, endptr, base ); } |
| 94 | #endif |
| 95 | |
| 96 | /* Handles copying a std::string into a buffer as would be provided in an API */ |