MCPcopy Create free account
hub / github.com/beefytech/Beef / Write

Method Write

BeefySysLib/MemStream.cpp:54–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52
53
54void Beefy::MemStream::Write(void* ptr, int size)
55{
56 memcpy(mData + mPos, ptr, size);
57 mPos += size;
58}
59
60int MemStream::GetPos()
61{

Callers

nothing calls this directly

Calls 2

InsertMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected