Table of Contents Previous topic Next topic
C COMPILER LIBRARY FUNCTIONS->Detailed Descriptions->memmove()
Summary
#include <string.h>
     
| char *memmove(void *dest,void* src, size_t count); | Move characters from one buffer to another | 
| dest | Pointer to buffer to copy to | 
| src | Pointer to buffer to copy from | 
| count | Number of characters to copy |