(C) 1998 AROS - The Amiga Research OS


NAME
#include <string.h>

void * memcpy ()

SYNOPSIS
void * dest
const void * src
size_t count

FUNCTION
Copy the contents of a part of memory to another. Both areas must not overlap. If they do, use memmove().

INPUTS
dest
The first byte of the destination area in memory
src
The first byte of the source area in memory
count
How many bytes to copy

RESULT
dest.

EXAMPLE

SEE ALSO
memmove()

NOTES

BUGS

INTERNALS

HISTORY
20.10.1998 hkiel
Amiga Research OS
01.01.1997 ldp
Changed clib to proto
10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
19.10.1996 aros
New functions: realloc(), memcpy() and calloc()