MCPcopy Create free account
hub / github.com/YatSenOS/YatSenOS-Tutorial-Volume-1 / memcpy

Function memcpy

lab8/src/4/src/utils/stdlib.cpp:61–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59}
60
61void memcpy(void *src, void *dst, uint32 length)
62{
63 for (uint32 i = 0; i < length; ++i)
64 {
65 ((char *)dst)[i] = ((char *)src)[i];
66 }
67}
68
69void strcpy(const char *src, char *dst) {
70 int i = 0;

Callers 1

copyProcessMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected