shithub: riscv

ref: 6c5e9f73197f0e6bfc59119541312a1d281133b2
dir: /sys/src/ape/lib/bsd/bcopy.c/

View raw version
#include <sys/types.h>
#include <unistd.h>
#include <string.h>

void
bcopy(void *f, void *t, size_t n)
{
	memmove(t, f, n);
}

int
bcmp(void *a, void *b, size_t n)
{
	return memcmp(a, b, n);
}

void
bzero(void *a, size_t n)
{
	memset(a, 0, n);
}