xref: /original-bsd/lib/libc/string/memmove.3 (revision fa921481)
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%

@(#)memmove.3 5.2 (Berkeley) 06/24/90

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

void *
memmove(void *dst, const void *src, size_t len);
DESCRIPTION
Memmove copies len bytes from string src to string dst and returns the original value of dst . The two strings may overlap; the copy is always done in a non-destructive manner.
SEE ALSO
bcopy(3), memccpy(3), memcpy(3), strcpy(3)
STANDARDS
Memmove conforms to ANSI X3.159-1989 (``ANSI C'').