toaruos/libc/ctype/isalnum.c
2018-05-04 12:17:32 +09:00

6 lines
80 B
C

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