fxlibc/src/libc/ctype/isalnum.c

8 lines
92 B
C

#include <ctype.h>
#undef isalnum
int isalnum(int c)
{
return isalpha(c) || isdigit(c);
}