浏览代码

Add clish/types.h header

git-svn-id: https://klish.googlecode.com/svn/trunk@402 0eaa4687-2ee9-07dd-09d9-bcdd2d2dd5fb
Serj Kalichev 13 年之前
父节点
当前提交
940e92e25b
共有 1 个文件被更改,包括 18 次插入0 次删除
  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 */