Fix UTIL_requireUserConfirmation() declaration

dev
senhuang42 2020-08-26 17:20:37 -04:00
parent 7991c55181
commit ef11aadc0c
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ extern int g_utilDisplayLevel;
* Displays a message prompt and returns success (0) if first character from stdin
* matches any from acceptableLetters. Otherwise, returns failure (1) and displays abortMsg.
*/
int UTIL_requireUserConfirmation(const char* const prompt, const char* const abortMsg, const char* const acceptableLetters);
int UTIL_requireUserConfirmation(const char* prompt, const char* abortMsg, const char* acceptableLetters);
/*-****************************************