diff options
author | dzwdz | 2022-07-27 00:16:11 +0200 |
---|---|---|
committer | dzwdz | 2022-07-27 00:16:11 +0200 |
commit | 734da5ae528b1e61e9701d70bfe7034a20bb61f2 (patch) | |
tree | 7743a2e5e68503acf806b3301315eaf98765b877 /src/user/app/shell/builtins.h | |
parent | c8b55b3fd4924abcdf919458b0d8adb0ec00b0f2 (diff) |
user: cleanup init and the shell's code
Diffstat (limited to 'src/user/app/shell/builtins.h')
-rw-r--r-- | src/user/app/shell/builtins.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/user/app/shell/builtins.h b/src/user/app/shell/builtins.h new file mode 100644 index 0000000..bb52cef --- /dev/null +++ b/src/user/app/shell/builtins.h @@ -0,0 +1,7 @@ +#pragma once +#include <camellia/syscalls.h> +#include <stdbool.h> + +void cmd_cat_ls(const char *args, bool ls); +void cmd_hexdump(const char *args); +void cmd_touch(const char *args); |