MCPcopy Create free account
hub / github.com/bulletphysics/bullet3 / ImStrncpy

Function ImStrncpy

examples/ThirdPartyLibs/imgui/imgui.cpp:1040–1045  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1038}
1039
1040void ImStrncpy(char* dst, const char* src, size_t count)
1041{
1042 if (count < 1) return;
1043 strncpy(dst, src, count);
1044 dst[count - 1] = 0;
1045}
1046
1047char* ImStrdup(const char* str)
1048{

Callers 3

ImGuiTextFilterMethod · 0.85
InputTextExMethod · 0.85
SetDragDropPayloadMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected