1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-30 19:03:24 +01:00

Merge pull request #564 from WinterMute/ctype-usage-fixes

fix usage of ctype macros
This commit is contained in:
SciresM 2019-06-15 05:48:50 -07:00 committed by GitHub
commit 65d499adb3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -71,7 +71,7 @@ static inline char *pack_hex_byte(char *buf, uint8_t byte)
*/ */
static char *skip_spaces(const char *str) static char *skip_spaces(const char *str)
{ {
while (isspace(*str)) while (isspace((unsigned char)*str))
++str; ++str;
return (char *)str; return (char *)str;
} }
@ -83,7 +83,7 @@ static char *skip_spaces(const char *str)
static unsigned int simple_guess_base(const char *cp) static unsigned int simple_guess_base(const char *cp)
{ {
if (cp[0] == '0') { if (cp[0] == '0') {
if (TOLOWER(cp[1]) == 'x' && isxdigit(cp[2])) if (TOLOWER(cp[1]) == 'x' && isxdigit((unsigned char)cp[2]))
return 16; return 16;
else else
return 8; return 8;
@ -108,10 +108,10 @@ unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int bas
if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x') if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x')
cp += 2; cp += 2;
while (isxdigit(*cp)) { while (isxdigit((unsigned char)*cp)) {
unsigned int value; unsigned int value;
value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; value = isdigit((unsigned char)*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10;
if (value >= base) if (value >= base)
break; break;
result = result * base + value; result = result * base + value;
@ -167,7 +167,7 @@ int skip_atoi(const char **s)
{ {
int i = 0; int i = 0;
while (isdigit(**s)) while (isdigit((unsigned char)**s))
i = i*10 + *((*s)++) - '0'; i = i*10 + *((*s)++) - '0';
return i; return i;
@ -654,7 +654,7 @@ int format_decode(const char *fmt, struct printf_spec *spec)
/* get field width */ /* get field width */
spec->field_width = -1; spec->field_width = -1;
if (isdigit(*fmt)) if (isdigit((unsigned char)*fmt))
spec->field_width = skip_atoi(&fmt); spec->field_width = skip_atoi(&fmt);
else if (*fmt == '*') { else if (*fmt == '*') {
/* it's the next argument */ /* it's the next argument */
@ -667,7 +667,7 @@ precision:
spec->precision = -1; spec->precision = -1;
if (*fmt == '.') { if (*fmt == '.') {
++fmt; ++fmt;
if (isdigit(*fmt)) { if (isdigit((unsigned char)*fmt)) {
spec->precision = skip_atoi(&fmt); spec->precision = skip_atoi(&fmt);
if (spec->precision < 0) if (spec->precision < 0)
spec->precision = 0; spec->precision = 0;
@ -882,7 +882,7 @@ int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
case FORMAT_TYPE_PTR: case FORMAT_TYPE_PTR:
str = pointer(fmt+1, str, end, va_arg(args, void *), str = pointer(fmt+1, str, end, va_arg(args, void *),
spec); spec);
while (isalnum(*fmt)) while (isalnum((unsigned char)*fmt))
fmt++; fmt++;
break; break;
@ -1456,7 +1456,7 @@ int vsscanf(const char *buf, const char *fmt, va_list args)
/* white space in format matchs any amount of /* white space in format matchs any amount of
* white space, including none, in the input. * white space, including none, in the input.
*/ */
if (isspace(*fmt)) { if (isspace((unsigned char)*fmt)) {
fmt = skip_spaces(++fmt); fmt = skip_spaces(++fmt);
str = skip_spaces(str); str = skip_spaces(str);
} }
@ -1476,16 +1476,16 @@ int vsscanf(const char *buf, const char *fmt, va_list args)
* advance both strings to next white space * advance both strings to next white space
*/ */
if (*fmt == '*') { if (*fmt == '*') {
while (!isspace(*fmt) && *fmt != '%' && *fmt) while (!isspace((unsigned char)*fmt) && *fmt != '%' && *fmt)
fmt++; fmt++;
while (!isspace(*str) && *str) while (!isspace((unsigned char)*str) && *str)
str++; str++;
continue; continue;
} }
/* get field width */ /* get field width */
field_width = -1; field_width = -1;
if (isdigit(*fmt)) if (isdigit((unsigned char)*fmt))
field_width = skip_atoi(&fmt); field_width = skip_atoi(&fmt);
/* get conversion qualifier */ /* get conversion qualifier */
@ -1531,7 +1531,7 @@ int vsscanf(const char *buf, const char *fmt, va_list args)
str = skip_spaces(str); str = skip_spaces(str);
/* now copy until next white space */ /* now copy until next white space */
while (*str && !isspace(*str) && field_width--) while (*str && !isspace((unsigned char)*str) && field_width--)
*s++ = *str++; *s++ = *str++;
*s = '\0'; *s = '\0';
num++; num++;