summaryrefslogtreecommitdiffstats
path: root/include/pttstruct.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/pttstruct.h')
-rw-r--r--include/pttstruct.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/pttstruct.h b/include/pttstruct.h
index 67fa00cf..64aac0ac 100644
--- a/include/pttstruct.h
+++ b/include/pttstruct.h
@@ -652,6 +652,12 @@ typedef struct word_t {
struct word_t *next;
} word_t;
+struct NameList {
+ int size;
+ int capacity;
+ char (*base)[IDLEN+1];
+};
+
typedef struct commands_t {
int (*cmdfunc)();
int level;