summaryrefslogtreecommitdiff
path: root/src/user/app/shell/builtins.h
diff options
context:
space:
mode:
authordzwdz2022-07-27 00:16:11 +0200
committerdzwdz2022-07-27 00:16:11 +0200
commit734da5ae528b1e61e9701d70bfe7034a20bb61f2 (patch)
tree7743a2e5e68503acf806b3301315eaf98765b877 /src/user/app/shell/builtins.h
parentc8b55b3fd4924abcdf919458b0d8adb0ec00b0f2 (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.h7
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);