diff options
author | dzwdz | 2022-07-27 20:02:50 +0200 |
---|---|---|
committer | dzwdz | 2022-07-27 20:02:50 +0200 |
commit | 67718cbcda566127b8c5b38ecda83cbd469dbc3f (patch) | |
tree | d87c171a92646048f7c65fe0f9070e9ff4e4211f /src/user/app/shell/shell.h | |
parent | c77b0fa7916f79c099ee4a6a80a093334e9090ac (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.h | 4 |
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); |