MCPcopy Create free account
hub / github.com/Phobos-developers/Phobos / wstrCopy

Method wstrCopy

src/Phobos.CRT.cpp:11–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9}
10
11void PhobosCRT::wstrCopy(wchar_t* Dest, const wchar_t* Source, size_t Count)
12{
13 wcsncpy_s(Dest, Count, Source, Count - 1);
14 Dest[Count - 1] = 0;
15}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected