5 lines
91 B
C++
5 lines
91 B
C++
#include "structures.h"
|
|
|
|
void test_bcopy(void *a, void *b, size_t n) {
|
|
bcopy(a, b, n);
|
|
}
|