X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=misc.c;h=fac28e308b5e74cd06631d95369ed76f9a05c88c;hb=4069bf210b68d0aaa44ca30eff264d7eb93d8d70;hp=f2d674248d065951400bad163468a8c1d09f673c;hpb=81af59974bcc0c619437cb83064d7c18e27614ec;p=open-adventure.git diff --git a/misc.c b/misc.c index f2d6742..fac28e3 100644 --- a/misc.c +++ b/misc.c @@ -211,7 +211,7 @@ static int word_count(char* str) static char* get_input(void) { // Set up the prompt - char input_prompt[] = "> "; + char input_prompt[] = PROMPT; if (!settings.prompt) input_prompt[0] = '\0'; @@ -220,7 +220,7 @@ static char* get_input(void) char* input; while (true) { - input = readline(input_prompt); + input = myreadline(input_prompt); if (input == NULL) // Got EOF; return with it. return (input); @@ -246,7 +246,7 @@ static char* get_input(void) return (input); } -bool silent_yes(void) +bool silent_yes_or_no(void) { bool outcome = false; @@ -295,7 +295,7 @@ bool silent_yes(void) } -bool yes(const char* question, const char* yes_response, const char* no_response) +bool yes_or_no(const char* question, const char* yes_response, const char* no_response) /* Print message X, wait for yes/no answer. If yes, print Y and return true; * if no, print Z and return false. */ {