From 1b8fbbd843ddeb5fc81c9303db9c590a436d499b Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 9 Jul 2018 12:10:32 -0700 Subject: progress --- command.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 command.h (limited to 'command.h') diff --git a/command.h b/command.h new file mode 100644 index 0000000..91a05c5 --- /dev/null +++ b/command.h @@ -0,0 +1,11 @@ + +#ifndef CMDTREE_COMMAND_H +#define CMDTREE_COMMAND_H + + +struct node { + char *name; + struct node **children; +}; + +#endif /* CMDTREE_COMMAND_H */ -- cgit v1.2.3