diff options
author | Anton Kling <anton@kling.gg> | 2024-12-10 12:24:07 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-12-10 12:24:07 +0100 |
commit | 916aa42260290e9e864304bc7d9395b6aa693c27 (patch) | |
tree | 784cdcbe26e828e18413bf9d31d6a84ed74dd1ba /kernel/includes/ctype.h | |
parent | bcca3d183930eeaf3d024476f39d1d8fccf2ebab (diff) |
kernel: Add string view and string builder
This makes write/read calls that use strings to communicate much
simpler and less error prone.
Diffstat (limited to 'kernel/includes/ctype.h')
-rw-r--r-- | kernel/includes/ctype.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/includes/ctype.h b/kernel/includes/ctype.h index f6be4f2..e8e0bae 100644 --- a/kernel/includes/ctype.h +++ b/kernel/includes/ctype.h @@ -1,2 +1,3 @@ int isdigit(int c); int tolower(int c); +int isspace(int c); |