Browse Source

Add clish/types.h header

git-svn-id: https://klish.googlecode.com/svn/trunk@402 0eaa4687-2ee9-07dd-09d9-bcdd2d2dd5fb
Serj Kalichev 13 years ago
parent
commit
940e92e25b
1 changed files with 18 additions and 0 deletions
  1. 18 0
      clish/types.h

+ 18 - 0
clish/types.h

@@ -0,0 +1,18 @@
+/*
+ * types.h
+ */
+
+#ifndef _clish_types_h
+#define _clish_types_h
+
+#include "lub/c_decl.h"
+#include "lub/argv.h"
+
+struct clish_help_s {
+	lub_argv_t *name;
+	lub_argv_t *help;
+	lub_argv_t *detail;
+};
+typedef struct clish_help_s clish_help_t;
+
+#endif /* _clish_types_h */