summaryrefslogtreecommitdiff
path: root/cmds.h
diff options
context:
space:
mode:
Diffstat (limited to 'cmds.h')
-rw-r--r--cmds.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/cmds.h b/cmds.h
new file mode 100644
index 0000000..c762a2c
--- /dev/null
+++ b/cmds.h
@@ -0,0 +1,28 @@
+/*
+ * Author: Kent Overstreet <kent.overstreet@gmail.com>
+ *
+ * GPLv2
+ */
+
+#ifndef _CMDS_H
+#define _CMDS_H
+
+#include "tools-util.h"
+
+int cmd_format(int argc, char *argv[]);
+
+int cmd_assemble(int argc, char *argv[]);
+int cmd_incremental(int argc, char *argv[]);
+int cmd_run(int argc, char *argv[]);
+int cmd_stop(int argc, char *argv[]);
+
+int cmd_fs_show(int argc, char *argv[]);
+int cmd_fs_set(int argc, char *argv[]);
+
+int cmd_device_show(int argc, char *argv[]);
+int cmd_device_add(int argc, char *argv[]);
+int cmd_device_remove(int argc, char *argv[]);
+
+int cmd_fsck(int argc, char *argv[]);
+
+#endif /* _CMDS_H */