|
||
void *memcpy( void *s1, void *s2, size_t count )
void *s1; /* address of target buffer */ void *s2; /* address of source buffer */ size_t count; /* number of bytes to copy */
|
|
|
Synopsis |
#include "string.h"
The memcpy function copies count characters from s2 to s1 . s1 and s2 may not overlap.
|
|
Parameters |
s1 and s2 are memory buffers at least count bytes in length.
|
|
Return Value |
memcpy returns s1 .
|
|
See Also |
|
|
|
|