Copies characters from one buffer to another, halting when the specified character is copied or when the specified number of bytes have been copied.
#include <string.h> void * memccpy (void *dest, const void *src, int c, unsigned int count);
dest
src
c
count
dest
that immediately follows the character c
.
Versions | Defined in | Include | Link to |
---|---|---|---|
INtime 3.0 | intime/rt/include/string.h | string.h | clib.lib |