isspace.c (82B)
1 #include "ctype.h" 2 3 int 4 (isspace)(int c) 5 { 6 return (_Ctype[c] & (_CN|_SP|_XS)); 7 }