Table of Contents Previous topic Next topic
C COMPILER LIBRARY FUNCTIONS->Detailed Descriptions->memcpy()
Summary
#include <string.h>
     
| char *memcpy(void *dest,void* src, size_t count); | Copy 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 |