1MEMCCPY(3) Linux Programmer's Manual MEMCCPY(3)
2
3
4
6 memccpy - copy memory area
7
9 #include <string.h>
10
11 void *memccpy(void *dest, const void *src, int c, size_t n);
12
14 The memccpy() function copies no more than n bytes from memory area src
15 to memory area dest, stopping when the character c is found.
16
18 The memccpy() function returns a pointer to the next character in dest
19 after c, or NULL if c was not found in the first n characters of src.
20
22 SVr4, 4.3BSD, C99
23
25 bcopy(3), memcpy(3), memmove(3), strcpy(3), strncpy(3)
26
27
28
29GNU 1993-04-10 MEMCCPY(3)