summaryrefslogtreecommitdiff
path: root/src/shell.h
diff options
context:
space:
mode:
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 */