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