1 #ifndef SC_STRTOULL_H 2 #define SC_STRTOULL_H 3 4 #include <limits.h> 5 6 #ifdef _WIN32 7 # define strtoull _strtoui64 8 # define ULLONG_MAX _UI64_MAX 9 #endif 10 11 #endif /* SC_STRTOULL_H */ 12
1 #ifndef SC_STRTOULL_H 2 #define SC_STRTOULL_H 3 4 #include <limits.h> 5 6 #ifdef _WIN32 7 # define strtoull _strtoui64 8 # define ULLONG_MAX _UI64_MAX 9 #endif 10 11 #endif /* SC_STRTOULL_H */ 12