MCPcopy Index your code
hub / github.com/GJDuck/e9patch / test_memcpy_2

Function test_memcpy_2

test/regtest/patch.cpp:701–708  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

699 fwrite(&tmp, sizeof(tmp), 1, stderr);
700}
701void test_memcpy_2(void)
702{
703 const char *aaa = "AAAAAA", *bbb = "BBBBBB";
704 struct TMP tmp;
705 memcpy((void *)tmp.x, bbb, 6);
706 memcpy((void *)tmp.y, aaa, 6);
707 fwrite(&tmp, sizeof(tmp), 1, stderr);
708}
709
710struct TMP2
711{

Callers

nothing calls this directly

Calls 2

memcpyFunction · 0.85
fwriteFunction · 0.85

Tested by

no test coverage detected