aboutsummaryrefslogtreecommitdiffstats
path: root/cmd.h
diff options
context:
space:
mode:
Diffstat (limited to 'cmd.h')
-rw-r--r--cmd.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/cmd.h b/cmd.h
new file mode 100644
index 0000000..436feac
--- /dev/null
+++ b/cmd.h
@@ -0,0 +1,33 @@
+#ifndef __IHE_CMD_H
+#define __IHE_CMD_H
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdint.h>
+#include <string.h>
+#include <unistd.h>
+
+typedef struct cmd_arg
+{
+ int argc;
+ char **argv;
+} cmd_arg;
+
+
+typedef struct cmd_table
+{
+ char *cmd;
+ int (*clb)(cmd_arg*);
+} cmd_table;
+
+
+int cnt_sep( char *s );
+char* cmd_line( char *prompt );
+cmd_arg* cmd_parse( char *str );
+int cmd_exec( cmd_arg *cmd, cmd_table *table );
+void cmd_arg_free( cmd_arg *arg );
+void cmd_sub_arg_free( cmd_arg *arg );
+cmd_arg* sub_cmd( cmd_arg *arg );
+
+
+#endif