#include <string.h> void *memcpy(void *dest, const void *src, int num);
This function copies num bytes from source to dest.
dest
ANSI, POSIX
memcpy(buffer, temp_buffer, BUF_MAX);
Go to the first, previous, next, last section, table of contents.