Add command_word_t, for command words.

This commit is contained in:
Jason S. Ninneman 2017-08-02 19:26:29 -07:00
parent 0d3393ebee
commit a15e7c9f91

View file

@ -183,6 +183,11 @@ struct settings_t {
bool prompt;
};
typedef struct {
vocab_t id;
word_type_t type;
} command_word_t;
struct command_t {
char raw1[LINESIZE], raw2[LINESIZE];
enum speechpart part;