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/app/shell/parser.c | |
parent | a2a1e4bbfcda8c1314b592c8c940e96e95cb68d4 (diff) |
user/libc: isspace, strtol
Diffstat (limited to 'src/user/app/shell/parser.c')
-rw-r--r-- | src/user/app/shell/parser.c | 4 |
1 files changed, 0 insertions, 4 deletions
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 <stdbool.h> #include <string.h> -static bool isspace(char c) { - return c == ' ' || c == '\t' || c == '\n'; -} - static char skipspace(char **sp) { char *s = *sp; while (*s && isspace(*s)) s++; |