1 --- memccpy.3.orig 2008-02-29 10:45:52.000000000 -0800
2 +++ memccpy.3 2008-02-29 12:03:32.000000000 -0800
7 -.Fn memccpy "void *dst" "const void *src" "int c" "size_t len"
9 +.Fa "void *restrict s1"
10 +.Fa "const void *restrict s2"
18 copies bytes from string
26 (as converted to an unsigned char) occurs in the string
29 the copy stops and a pointer to the byte after the copy of
38 bytes are copied, and a NULL pointer is returned.
40 +The source and destination strings should not overlap, as the
41 +behavior is undefined.