MCPcopy Create free account
hub / github.com/Overload-Technologies/Overload / ImTextCharToUtf8

Function ImTextCharToUtf8

Dependencies/ImGui/src/imgui.cpp:2565–2570  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2563}
2564
2565const char* ImTextCharToUtf8(char out_buf[5], unsigned int c)
2566{
2567 int count = ImTextCharToUtf8_inline(out_buf, 5, c);
2568 out_buf[count] = 0;
2569 return out_buf;
2570}
2571
2572// Not optimal but we very rarely use this function.
2573int ImTextCountUtf8BytesFromChar(const char* in_text, const char* in_text_end)

Callers 4

DebugNodeFontMethod · 0.85
OnCharPressedMethod · 0.85
InputTextExMethod · 0.85

Calls 1

ImTextCharToUtf8_inlineFunction · 0.85

Tested by

no test coverage detected