• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <ctype.h>
2 #undef isspace
3 
isspace(int c)4 int isspace(int c)
5 {
6 	return c == ' ' || (unsigned)c-'\t' < 5;
7 }
8 
__isspace_l(int c,locale_t l)9 int __isspace_l(int c, locale_t l)
10 {
11 	return isspace(c);
12 }
13 
14 weak_alias(__isspace_l, isspace_l);
15