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