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

Function ImCharIsBlankW

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

Source from the content-addressed store, hash-verified

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
366
367// Helpers: Formatting

Callers 4

CalcWordWrapPositionAMethod · 0.85
InputTextFilterCharacterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected