SilverScreen Solid Modeler

memmove

memmove

Previous topic Next topic  

memmove

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

void *memmove( 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 memmove function copies count bytes from s2 to s1 . s1 and s2 may overlap.

 

 

Parameters

s1 and s2 are memory buffers at least count bytes in length.

 

 

Return Value

memmove returns s1 .

 

See Also

memcpy