summaryrefslogtreecommitdiff
path: root/kernel/includes/ctype.h
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-12-10 12:24:07 +0100
committerAnton Kling <anton@kling.gg>2024-12-10 12:24:07 +0100
commit916aa42260290e9e864304bc7d9395b6aa693c27 (patch)
tree784cdcbe26e828e18413bf9d31d6a84ed74dd1ba /kernel/includes/ctype.h
parentbcca3d183930eeaf3d024476f39d1d8fccf2ebab (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.h1
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);