isalnum.c (86B)
1 #include "ctype.h" 2 3 int 4 (isalnum)(int c) 5 { 6 return (_Ctype[c] & (_DI|_LO|_UP|_XA)); 7 }