summaryrefslogtreecommitdiff
path: root/src/user/app/shell/shell.h
diff options
context:
space:
mode:
authordzwdz2022-07-27 20:02:50 +0200
committerdzwdz2022-07-27 20:02:50 +0200
commit67718cbcda566127b8c5b38ecda83cbd469dbc3f (patch)
treed87c171a92646048f7c65fe0f9070e9ff4e4211f /src/user/app/shell/shell.h
parentc77b0fa7916f79c099ee4a6a80a093334e9090ac (diff)
user/shell: actual parsing, multiple argument support
Diffstat (limited to 'src/user/app/shell/shell.h')
-rw-r--r--src/user/app/shell/shell.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/user/app/shell/shell.h b/src/user/app/shell/shell.h
new file mode 100644
index 0000000..986ce22
--- /dev/null
+++ b/src/user/app/shell/shell.h
@@ -0,0 +1,4 @@
+#pragma once
+#include <stddef.h>
+
+int parse(char *str, char **argv, size_t argvlen, char **redir);