MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / Copy

Method Copy

Source/Engine/Platform/Base/StringUtilsBase.cpp:19–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17constexpr char VolumeSeparatorChar = ':';
18
19int32 StringUtils::Copy(char* dst, const Char* src, int32 count)
20{
21 int32 i = 0;
22 while (i < count && src[i])
23 {
24 dst[i] = (char)src[i];
25 i++;
26 }
27 dst[i] = 0;
28 return i;
29}
30
31int32 StringUtils::Copy(Char* dst, const char* src, int32 count)
32{

Callers 9

LoadTimelineMethod · 0.45
SaveTimelineMethod · 0.45
loadMethod · 0.45
LoadSurfaceMethod · 0.45
SaveSurfaceMethod · 0.45
LoadSurfaceMethod · 0.45
SaveSurfaceMethod · 0.45
CookConvexMeshMethod · 0.45
CookTriangleMeshMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected