PatchworkOS
Loading...
Searching...
No Matches
isspace.c
Go to the documentation of this file.
1#include <ctype.h>
2
4
5int isspace(int c)
6{
7 return (_ascii_table[c].flags & _ASCII_SPACE);
8}
_ascii_entry_t _ascii_table[UINT8_MAX+1]
Definition ascii_table.c:5
@ _ASCII_SPACE
Definition ascii_table.h:14
int isspace(int c)
Definition isspace.c:5