diff options
Diffstat (limited to 'command.h')
| -rw-r--r-- | command.h | 11 |
1 files changed, 11 insertions, 0 deletions
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 */ |
