From 028cefb9b30240fa0bba6ff030076bd2158a66f4 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Wed, 3 Aug 2022 11:21:20 +0200 Subject: user/libc: isspace, strtol --- src/user/lib/include/string.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/user/lib/include/string.h') 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 + +int isspace(char c); + +long strtol(const char *restrict s, char **restrict end, int base); -- cgit v1.2.3