MCPcopy Create free account
hub / github.com/diasurgical/devilution / CopyInts

Function CopyInts

Source/loadsave.cpp:250–258  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

248}
249
250void CopyInts(const void *src, const int n, void *dst)
251{
252 const auto *s = reinterpret_cast<const unsigned int *>(src);
253 auto *d = reinterpret_cast<unsigned int *>(dst);
254 for(int i = 0; i < n; i++) {
255 CopyInt(s, d);
256 ++d; ++s;
257 }
258}
259
260void CopyInt64(const void *src, void *dst)
261{

Callers 2

LoadPlayerFunction · 0.85
SavePlayerFunction · 0.85

Calls 1

CopyIntFunction · 0.85

Tested by

no test coverage detected