diff options
author | Anton Kling <anton@kling.gg> | 2024-04-21 18:39:36 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-04-21 19:29:50 +0200 |
commit | 821eb5ff9ed60d4b1c7a50ebf406f22bc0da9bd4 (patch) | |
tree | 4562261e5bd41e215c277998f20d736d28a33430 /userland/libc/include | |
parent | a8959b3da1b160c84da6ead6f12188b1824d76e6 (diff) |
LibC: Add different isX() functions
Diffstat (limited to 'userland/libc/include')
-rw-r--r-- | userland/libc/include/ctype.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/userland/libc/include/ctype.h b/userland/libc/include/ctype.h index 7c8c311..c04f96a 100644 --- a/userland/libc/include/ctype.h +++ b/userland/libc/include/ctype.h @@ -11,4 +11,9 @@ int isxdigit(int c); int ispunct(int c); int isalnum(int c); int isprint(int c); +int isupper(int c); +int islower(int c); +int isgraph(int c); +int isblank(int c); +int iscntrl(int c); #endif |