| 2256 | } |
| 2257 | |
| 2258 | int ImStrlenW(const ImWchar* str) |
| 2259 | { |
| 2260 | //return (int)wcslen((const wchar_t*)str); // FIXME-OPT: Could use this when wchar_t are 16-bit |
| 2261 | int n = 0; |
| 2262 | while (*str++) n++; |
| 2263 | return n; |
| 2264 | } |
| 2265 | |
| 2266 | // Find end-of-line. Return pointer will point to either first \n, either str_end. |
| 2267 | const char* ImStreolRange(const char* str, const char* str_end) |
nothing calls this directly
no outgoing calls
no test coverage detected