aboutsummaryrefslogtreecommitdiffstats
path: root/cmd.h
diff options
context:
space:
mode:
Diffstat (limited to 'cmd.h')
-rw-r--r--cmd.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/cmd.h b/cmd.h
deleted file mode 100644
index 436feac..0000000
--- a/cmd.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#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