MCPcopy Create free account
hub / github.com/cinder/Cinder / ImToUpper

Function ImToUpper

include/imgui/imgui_internal.h:403–404  ·  view source on GitHub ↗

Find beginning-of-line

Source from the content-addressed store, hash-verified

401IMGUI_API int ImStrlenW(const ImWchar* str); // Computer string length (ImWchar string)
402IMGUI_API const char* ImStrbol(const char* buf_mid_line, const char* buf_begin); // Find beginning-of-line
403IM_MSVC_RUNTIME_CHECKS_OFF
404inline char ImToUpper(char c) { return (c >= 'a' && c <= 'z') ? c &= ~32 : c; }
405inline bool ImCharIsBlankA(char c) { return c == ' ' || c == '\t'; }
406inline bool ImCharIsBlankW(unsigned int c) { return c == ' ' || c == '\t' || c == 0x3000; }
407inline bool ImCharIsXdigitA(char c) { return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f'); }

Callers 4

ImStricmpFunction · 0.85
ImStrnicmpFunction · 0.85
ImStristrFunction · 0.85
ImStrimatchlenFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected