Not optimal but we very rarely use this function.
| 2090 | |
| 2091 | // Not optimal but we very rarely use this function. |
| 2092 | int ImTextCountUtf8BytesFromChar(const char* in_text, const char* in_text_end) |
| 2093 | { |
| 2094 | unsigned int unused = 0; |
| 2095 | return ImTextCharFromUtf8(&unused, in_text, in_text_end); |
| 2096 | } |
| 2097 | |
| 2098 | static inline int ImTextCountUtf8BytesFromChar(unsigned int c) |
| 2099 | { |
no test coverage detected