#ifndef _WCS_LONGLONG
#pragma weak _wcstol = wcstol
#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 _WLONG_T long long
#define _WLONG_MAX LLONG_MAX
#define _WLONG_MIN LLONG_MIN
#else
#define _WLONG_T long
#define _WLONG_MAX LONG_MAX
#define _WLONG_MIN LONG_MIN
#endif
#ifdef _WCS_LONGLONG
long long
wcstoll(const wchar_t *_RESTRICT_KYWD str, wchar_t **_RESTRICT_KYWD ptr,
int base)
#else
long
wcstol(const wchar_t *str, wchar_t **ptr, int base)
#endif
{
_WLONG_T val;
wchar_t c;
int xx, neg = 0;
_WLONG_T multmin, limit;
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);
}
if (neg) {
limit = _WLONG_MIN;
} else {
limit = -_WLONG_MAX;
}
multmin = limit / base;
val = -DIGIT(c);
for (; iswalnum(c = *++str) && (xx = DIGIT(c)) < base; ) {
if (val < multmin)
goto overflow;
val *= base;
if (val < limit + 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 (neg ? _WLONG_MIN : _WLONG_MAX);
}