mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-28 23:44:25 +00:00
9 lines
116 B
C
9 lines
116 B
C
#ifndef _CTYPE_H
|
|
#define _CTYPE_H
|
|
|
|
int tolower(int c);
|
|
int toupper(int c);
|
|
int isspace(int c);
|
|
|
|
#endif // !_CTYPE_H
|