Penguin
Annotated edit history of memccpy(3) version 1 showing authors affecting page license. View with all changes included.
Rev Author # Line
1 perry 1 MEMCCPY
2 !!!MEMCCPY
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 RETURN VALUE
7 CONFORMING TO
8 SEE ALSO
9 ----
10 !!NAME
11
12
13 memccpy - copy memory area
14 !!SYNOPSIS
15
16
17 __#include
18 __''dest''__, const void *__''src''__, int__ ''c''__, size_t__ ''n''__);
19 __
20 !!DESCRIPTION
21
22
23 The __memccpy()__ function copies no more than ''n''
24 bytes from memory area ''src'' to memory area
25 ''dest'', stopping when the character ''c'' is
26 found.
27 !!RETURN VALUE
28
29
30 The __memccpy()__ function returns a pointer to the next
31 character in ''dest'' after ''c'', or NULL if ''c''
32 was not found in the first ''n'' characters of
33 ''src''.
34 !!CONFORMING TO
35
36
37 SVID 3, BSD 4.3
38 !!SEE ALSO
39
40
41 bcopy(3), memcpy(3), memmove(3),
42 strcpy(3), strncpy(3)
43 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.