| 8787 | AddLog("Welcome to Dear ImGui!"); |
| 8788 | } |
| 8789 | ~ExampleAppConsole() |
| 8790 | { |
| 8791 | ClearLog(); |
| 8792 | for (int i = 0; i < History.Size; i++) |
| 8793 | ImGui::MemFree(History[i]); |
| 8794 | } |
| 8795 | |
| 8796 | // Portable helpers |
| 8797 | static int Stricmp(const char* s1, const char* s2) { int d; while ((d = toupper(*s2) - toupper(*s1)) == 0 && *s1) { s1++; s2++; } return d; } |
nothing calls this directly
no outgoing calls
no test coverage detected