| 218 | |
| 219 | |
| 220 | inline void CopyMemory(const void *source, void *dest, uint32 size) |
| 221 | { |
| 222 | memcpy(dest, source, size); |
| 223 | } |
| 224 | |
| 225 | inline void FillMemory(void *ptr, uint32 size, uint8 value) |
| 226 | { |
nothing calls this directly
no outgoing calls
no test coverage detected