#ifndef _WCS_LONGLONG
#pragma weak _wcstoul = wcstoul
#endif
#include "lint.h"
#include <limits.h>
#include <errno.h>
#include <wchar.h>
#define DIGIT(x) (iswdigit(x) ? (x) - L'0' : \
iswlower(x) ? (x) + 10 - L'a' : (x) + 10 - L'A')
#define MBASE (L'z' - L'a' + 1 + 10)
#ifdef _WCS_LONGLONG
#define _WULONG_T unsigned long long
#define _WULONG_MAX ULLONG_MAX
#else
#define _WULONG_T unsigned long
#define _WULONG_MAX ULONG_MAX
#endif
#ifdef _WCS_LONGLONG
unsigned long long
wcstoull(const wchar_t *_RESTRICT_KYWD str, wchar_t **_RESTRICT_KYWD ptr,
int base)
#else
unsigned long
wcstoul(const wchar_t *str, wchar_t **ptr, int base)
#endif
{
_WULONG_T val;
wchar_t c;
int xx, neg = 0;
_WULONG_T multmax;
if (ptr != NULL)
*ptr = (wchar_t *)str;
if (base < 0 || base > MBASE) {
errno = EINVAL;
return (0);
}
if (!iswalnum(c = *str)) {
while (iswspace(c)) {
c = *++str;
}
switch (c) {
case L'-':
neg++;
case L'+':
c = *++str;
}
}
if (base == 0) {
if (c != L'0')
base = 10;
else if (str[1] == L'x' || str[1] == L'X')
base = 16;
else
base = 8;
}
if (!iswalnum(c) || (xx = DIGIT(c)) >= base) {
errno = EINVAL;
return (0);
}
if (base == 16 && c == L'0' && iswxdigit(str[2]) &&
(str[1] == L'x' || str[1] == L'X')) {
c = *(str += 2);
}
multmax = _WULONG_MAX / (_WULONG_T)base;
val = DIGIT(c);
for (; iswalnum(c = *++str) && (xx = DIGIT(c)) < base; ) {
if (val > multmax)
goto overflow;
val *= base;
if (_WULONG_MAX - val < xx)
goto overflow;
val += xx;
}
if (ptr != NULL)
*ptr = (wchar_t *)str;
return (neg ? -val : val);
overflow:
while (iswalnum(c = *++str) && (xx = DIGIT(c)) < base)
;
if (ptr != NULL)
*ptr = (wchar_t *)str;
errno = ERANGE;
return (_WULONG_MAX);
}