MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/SPlisHSPlasH / ImCharIsBlankW

Function ImCharIsBlankW

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

Source from the content-addressed store, hash-verified

359static inline char ImToUpper(char c) { return (c >= 'a' && c <= 'z') ? c &= ~32 : c; }
360static inline bool ImCharIsBlankA(char c) { return c == ' ' || c == '\t'; }
361static inline bool ImCharIsBlankW(unsigned int c) { return c == ' ' || c == '\t' || c == 0x3000; }
362IM_MSVC_RUNTIME_CHECKS_RESTORE
363
364// Helpers: Formatting

Callers 3

CalcWordWrapPositionAMethod · 0.85
is_separatorFunction · 0.85
InputTextFilterCharacterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected