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

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_demo.cpp3149 static int Strnicmp(const char* str1, const char* str2, int n) { int d = 0; while (n > 0 && (d = toupper(*str2) - toupper(*str1)) == 0 && *str1) { str1++; str2++; n--; } return d; } function in struct:ExampleAppConsole
3358 if (Strnicmp(Commands[i], word_start, (int)(word_end-word_start)) == 0)

Completed in 13 milliseconds