MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / ImStrncpy

Function ImStrncpy

KBotExt/imgui/imgui.cpp:1741–1748  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1739}
1740
1741void ImStrncpy(char* dst, const char* src, size_t count)
1742{
1743 if (count < 1)
1744 return;
1745 if (count > 1)
1746 strncpy(dst, src, count - 1);
1747 dst[count - 1] = 0;
1748}
1749
1750char* ImStrdup(const char* str)
1751{

Callers 4

ImGuiTextFilterMethod · 0.85
SetDragDropPayloadMethod · 0.85
InputTextExMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected