diff options
| author | Ian McFarlane <i.mcfarlane2002@gmail.com> | 2025-04-17 14:19:40 -0400 |
|---|---|---|
| committer | Ian McFarlane <i.mcfarlane2002@gmail.com> | 2025-04-17 14:19:40 -0400 |
| commit | 7108e7c951f7cff79ce4992f1c7d8d0af0bb5af6 (patch) | |
| tree | e99684b87952bded5e51c83848a5d35ab53d9ab0 /kernel/include/lib/kctype.h | |
| parent | starting on ata (diff) | |
| parent | clang 18 in flake instead of zig (diff) | |
| download | comus-7108e7c951f7cff79ce4992f1c7d8d0af0bb5af6.tar.gz comus-7108e7c951f7cff79ce4992f1c7d8d0af0bb5af6.tar.bz2 comus-7108e7c951f7cff79ce4992f1c7d8d0af0bb5af6.zip | |
Merge branch 'main' into ata
Diffstat (limited to 'kernel/include/lib/kctype.h')
| -rw-r--r-- | kernel/include/lib/kctype.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kernel/include/lib/kctype.h b/kernel/include/lib/kctype.h index 6d090c6..aee1bb9 100644 --- a/kernel/include/lib/kctype.h +++ b/kernel/include/lib/kctype.h @@ -19,4 +19,9 @@ int isspace(int c); */ int isdigit(int c); +/** + * @returns if a character is ascii printable + */ +int isprint(int c); + #endif /* kctype.h */ |