![]() -> Click here to learn how to get live help <- |
MEMCCPYIndexNAMEmemccpy - copy memory areaSYNOPSIS#include <string.h> void *memccpy(void *dest, const void *src, int c, size_t n); DESCRIPTIONThe fBmemccpy()fP function copies no more than fInfP bytes from memory area fIsrcfP to memory area fIdestfP, stopping when the character fIcfP is found.RETURN VALUEThe fBmemccpy()fP function returns a pointer to the next character in fIdestfP after fIcfP, or NULL if fIcfP was not found in the first fInfP characters of fIsrcfP.CONFORMING TOSVID 3, BSD 4.3SEE ALSObcopy(3), memcpy(3), memmove(3), strcpy(3), strncpy(3)
Index |