diff options
author | Anton Kling <anton@kling.gg> | 2023-11-17 23:58:14 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-17 23:58:14 +0100 |
commit | 01a9392ad6051878e217bffeffd6261ccf994c42 (patch) | |
tree | 17bb2d06531c32e17396ff6978983e133b79c6df /userland/minibox/utilities/include.h | |
parent | 0c9282bb61b0d7c463045139655b3f1f1ec5422b (diff) |
Minibox: Add a somewhat improved shell
This shell actually lexes and produces a AST which makes it easier to
add features and will makes it more difficult to introduce bugs. So
basically it is just better code.
Diffstat (limited to 'userland/minibox/utilities/include.h')
-rw-r--r-- | userland/minibox/utilities/include.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/minibox/utilities/include.h b/userland/minibox/utilities/include.h index 7ffd136..b01d976 100644 --- a/userland/minibox/utilities/include.h +++ b/userland/minibox/utilities/include.h @@ -37,5 +37,6 @@ int wc_main(int argc, char **argv); int ls_main(int argc, char **argv); int touch_main(int argc, char **argv); int ed_main(int argc, char **argv); +int sh_main(int argc, char **argv); int init_main(void); |