Searched refs:Stricmp (Results 1 - 1 of 1) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_demo.cpp3148 static int Stricmp(const char* str1, const char* str2) { int d; while ((d = toupper(*str2) - toupper(*str1)) == 0 && *str1) { str1++; str2++; } return d; } function in struct:ExampleAppConsole
3295 if (Stricmp(History[i], command_line) == 0)
3304 if (Stricmp(command_line, "CLEAR") == 0)
3308 else if (Stricmp(command_line, "HELP") == 0)
3314 else if (Stricmp(command_line, "HISTORY") == 0)

Completed in 8 milliseconds