5 lines
79 B
C++
5 lines
79 B
C++
#include "structures.h"
|
|
|
|
void test_bzero(void *a, size_t n) {
|
|
bzero(a, n);
|
|
}
|