MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / ImToUpper

Function ImToUpper

KBotExt/imgui/imgui_internal.h:361–362  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

359IMGUI_API void ImStrTrimBlanks(char* str);
360IMGUI_API const char* ImStrSkipBlank(const char* str);
361IM_MSVC_RUNTIME_CHECKS_OFF
362static inline char ImToUpper(char c) { return (c >= 'a' && c <= 'z') ? c &= ~32 : c; }
363static inline bool ImCharIsBlankA(char c) { return c == ' ' || c == '\t'; }
364static inline bool ImCharIsBlankW(unsigned int c) { return c == ' ' || c == '\t' || c == 0x3000; }
365IM_MSVC_RUNTIME_CHECKS_RESTORE

Callers 3

ImStricmpFunction · 0.85
ImStrnicmpFunction · 0.85
ImStristrFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected