diff options
author | dzwdz | 2022-08-03 11:21:20 +0200 |
---|---|---|
committer | dzwdz | 2022-08-03 11:21:20 +0200 |
commit | 028cefb9b30240fa0bba6ff030076bd2158a66f4 (patch) | |
tree | 82e1b9ccc2146dd94a48796dfb978b66172d199c /src/user/lib/include/string.h | |
parent | a2a1e4bbfcda8c1314b592c8c940e96e95cb68d4 (diff) |
user/libc: isspace, strtol
Diffstat (limited to 'src/user/lib/include/string.h')
-rw-r--r-- | src/user/lib/include/string.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/user/lib/include/string.h b/src/user/lib/include/string.h index e5c0255..8930bee 100644 --- a/src/user/lib/include/string.h +++ b/src/user/lib/include/string.h @@ -1 +1,6 @@ +#pragma once #include <shared/mem.h> + +int isspace(char c); + +long strtol(const char *restrict s, char **restrict end, int base); |