aboutsummaryrefslogtreecommitdiff
path: root/strings.c
diff options
context:
space:
mode:
Diffstat (limited to 'strings.c')
-rw-r--r--strings.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/strings.c b/strings.c
index e0ec652..e3459e0 100644
--- a/strings.c
+++ b/strings.c
@@ -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[] = {
'\'', '?', '.', '/', '`', '~', ',', '+', '!'
};