MCPcopy Create free account
hub / github.com/TheForceEngine/TheForceEngine / ImStrncpy

Function ImStrncpy

TheForceEngine/TFE_Ui/imGUI/imgui.cpp:1891–1898  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1889}
1890
1891void ImStrncpy(char* dst, const char* src, size_t count)
1892{
1893 if (count < 1)
1894 return;
1895 if (count > 1)
1896 strncpy(dst, src, count - 1);
1897 dst[count - 1] = 0;
1898}
1899
1900char* ImStrdup(const char* str)
1901{

Callers 4

ImGuiTextFilterMethod · 0.85
SetDragDropPayloadMethod · 0.85
InputTextExMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected