diff --git a/reactos/lib/crt/crt.xml b/reactos/lib/crt/crt.xml index 5d0e8342ab5..2db3f46fe95 100644 --- a/reactos/lib/crt/crt.xml +++ b/reactos/lib/crt/crt.xml @@ -317,6 +317,7 @@ senv.c strtod.c strtoul.c + strtoull.c swab.c wcstod.c wcstombs.c diff --git a/reactos/lib/crt/stdlib/strtoull.c b/reactos/lib/crt/stdlib/strtoull.c index c61dd7f2aba..ca53c67a5f5 100644 --- a/reactos/lib/crt/stdlib/strtoull.c +++ b/reactos/lib/crt/stdlib/strtoull.c @@ -4,7 +4,8 @@ #include #include #include -//#include +#include +#include /* * Convert a string to an unsigned long integer. @@ -12,13 +13,13 @@ * Ignores `locale' stuff. Assumes that the upper and lower case * alphabets and digits are each contiguous. */ -unsigned long +uint64_t strtoull(const char *nptr, char **endptr, int base) { const char *s = nptr; - unsigned long acc; + uint64_t acc; int c; - unsigned long cutoff; + uint64_t cutoff; int neg = 0, any, cutlim; /* @@ -43,8 +44,8 @@ strtoull(const char *nptr, char **endptr, int base) } if (base == 0) base = c == '0' ? 8 : 10; - cutoff = (unsigned long)ULONG_MAX / base; - cutlim = (unsigned long)ULONG_MAX % base; + cutoff = UINT64_MAX / base; + cutlim = (int)(UINT64_MAX % base); for (acc = 0, any = 0;; c = *s++) { if (isdigit(c)) @@ -65,7 +66,7 @@ strtoull(const char *nptr, char **endptr, int base) } if (any < 0) { - acc = ULONG_MAX; + acc = UINT64_MAX; __set_errno ( ERANGE ); } else if (neg)