summaryrefslogtreecommitdiff
path: root/src/shell.h
diff options
context:
space:
mode:
authorkx <kx@radix.pro>2022-09-28 17:07:19 +0300
committerkx <kx@radix.pro>2022-09-28 17:07:19 +0300
commit5780fdaca5a2cd49c8218aec48cb6647374089ec (patch)
treeef5c36583f70cf1e24d6d3cf257beb0e832c9d98 /src/shell.h
parentd05678abe9422b72583ab3a90c0c6c7db392ca83 (diff)
downloadsila-shell-5780fdaca5a2cd49c8218aec48cb6647374089ec.tar.xz
users list command implementation
Diffstat (limited to 'src/shell.h')
-rw-r--r--src/shell.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/shell.h b/src/shell.h
new file mode 100644
index 0000000..15b4278
--- /dev/null
+++ b/src/shell.h
@@ -0,0 +1,28 @@
+
+#ifndef __SHELL_H
+#define __SHELL_H
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+extern int com_id( char *arg );
+extern int com_ls( char *arg );
+extern int com_more( char *arg );
+extern int com_vi( char *arg );
+extern int com_rename( char *arg );
+extern int com_stat( char *arg );
+extern int com_delete( char *arg );
+extern int com_cd( char *arg );
+extern int com_ping( char *arg );
+extern int com_pwd( char *ignore );
+
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __SHELL_H */