Use revived __maskrune for digittoint

Minor formatting
This commit is contained in:
Andrey A. Chernov 1997-09-27 04:34:35 +00:00
parent 659ad3a4a1
commit 46dba712f1

View File

@ -50,7 +50,7 @@ int
isalnum(c)
int c;
{
return (__istype((c), (_A|_D)));
return (__istype((c), _A|_D));
}
#undef isalpha
@ -178,5 +178,5 @@ int
digittoint(c)
int c;
{
return (__istype((c), 0xFF));
return (__maskrune((c), 0xFF));
}