From a15e7c9f91dc3597896536658d7ffa5eda9e940f Mon Sep 17 00:00:00 2001 From: "Jason S. Ninneman" Date: Wed, 2 Aug 2017 19:26:29 -0700 Subject: [PATCH] Add command_word_t, for command words. --- advent.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/advent.h b/advent.h index 2e07c7e..d235707 100644 --- a/advent.h +++ b/advent.h @@ -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; -- 2.31.1