summaryrefslogtreecommitdiff
path: root/src/user/app/shell/parser.c
diff options
context:
space:
mode:
authordzwdz2022-08-03 11:21:20 +0200
committerdzwdz2022-08-03 11:21:20 +0200
commit028cefb9b30240fa0bba6ff030076bd2158a66f4 (patch)
tree82e1b9ccc2146dd94a48796dfb978b66172d199c /src/user/app/shell/parser.c
parenta2a1e4bbfcda8c1314b592c8c940e96e95cb68d4 (diff)
user/libc: isspace, strtol
Diffstat (limited to 'src/user/app/shell/parser.c')
-rw-r--r--src/user/app/shell/parser.c4
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++;