Initial cmd..

This commit is contained in:
Nils O. Selåsdal
2014-06-28 01:53:29 +02:00
parent c949961e77
commit a0e5a4fac8
2 changed files with 65 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#include <stdint.h>
enum UCCmdNodeType {
UC_CMDNODE_ROOT,
UC_CMDNODE_KEYWORD,
UC_CMD-zzzzzzzzzzzzzzzz
};
struct UCCmdNode {
enum UCCmdNodeType type;
uint32_t flags;
void *param;
struct UCCmdNode *next;
struct UCCmdNode *child;
};