diff options
Diffstat (limited to 'strings.c')
| -rw-r--r-- | strings.c | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -53,6 +53,23 @@ const char* exit_responses[] = { "BYE-BYE.", "GOOD-BYE.", }; +const char* greetings_triggers[] = { + "hi", + "hello", + "hiya", + "sup", + "whats up", + "how are you", + "hey", + "how are you doing" +}; +const char* greetings_responses[] = { + "HELLO.", + "HI.", + "GREETINGS.", + "HELLO.", + "HELLO." +}; const char punctuation_marks[] = { '\'', '?', '.', '/', '`', '~', ',', '+', '!' }; |