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

Function CopyInt64

Source/loadsave.cpp:260–267  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

258}
259
260void CopyInt64(const void *src, void *dst)
261{
262 unsigned long long buf;
263 memcpy(&buf, src, 8);
264 tbuff += 8;
265 buf = SDL_SwapLE64(buf);
266 memcpy(dst, &buf, 8);
267}
268
269void LoadPlayer(int i)
270{

Callers 2

LoadPlayerFunction · 0.85
SavePlayerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected