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/app/shell/parser.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/user/app/shell') diff --git a/src/user/app/shell/parser.c b/src/user/app/shell/parser.c index 31c45d1..072c720 100644 --- a/src/user/app/shell/parser.c +++ b/src/user/app/shell/parser.c @@ -2,10 +2,6 @@ #include #include -static bool isspace(char c) { - return c == ' ' || c == '\t' || c == '\n'; -} - static char skipspace(char **sp) { char *s = *sp; while (*s && isspace(*s)) s++; -- cgit v1.2.3