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