|
MEMCPY (3) | C library functions | Unix Manual Pages | :man▋
NAME
memcpy - copy byte string
CONTENTS
Library Synopsis Description Return Values See Also Standards Bugs
LIBRARY
.Lb libc
SYNOPSIS
.In string.h void * memcpy "void *dst" "const void *src" "size_t len"
DESCRIPTION
The memcpy function copies len bytes from string src to string dst.
RETURN VALUES
The memcpy function returns the original value of dst.
SEE ALSO
bcopy(3), memccpy(3), memmove(3), strcpy(3)
STANDARDS
BUGS
bcopy(3), memmove(3)
|