fxlibc/src/libc/ctype/isdigit.c

8 lines
92 B
C

#include <ctype.h>
#undef isdigit
int isdigit(int c)
{
return (c >= '0') && (c <= '9');
}