xref: /original-bsd/lib/libc/string/bcopy.3 (revision caa496f3)
Copyright (c) 1990 The Regents of the University of California.
All rights reserved.

This code is derived from software contributed to Berkeley by
Chris Torek.

%sccs.include.redist.man%

@(#)bcopy.3 5.1 (Berkeley) 05/15/90

BCOPY 3 ""
C 7
NAME
bcopy - copy byte string
SYNOPSIS
#include <string.h>

void
bcopy(const char *src, char *dst, size_t len);
DESCRIPTION
Bcopy copies len bytes from string src to string dst . The two strings may overlap. If len is zero, no bytes are copied.
SEE ALSO
memccpy(3), memcpy(3), memmove(3), strcpy(3), strncpy(3)