Penguin
Annotated edit history of bcopy(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 BCOPY
2 !!!BCOPY
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 RETURN VALUE
7 CONFORMING TO
8 SEE ALSO
9 ----
10 !!NAME
11
12
13 bcopy - copy byte strings
14 !!SYNOPSIS
15
16
17 __#include
18 __''src''__, void *__''dest''__, size_t__ ''n''__);
19 __
20 !!DESCRIPTION
21
22
23 The __bcopy()__ function copies the first ''n'' bytes
24 of the source string ''src'' to the destination string
25 ''dest''. If ''n'' is zero, no bytes are
26 copied.
27 !!RETURN VALUE
28
29
30 The __bcopy()__ function returns no value.
31 !!CONFORMING TO
32
33
34 4.3BSD. This function is deprecated -- use __memcpy__ in
35 new programs.
36 !!SEE ALSO
37
38
39 memccpy(3), memcpy(3), memmove(3),
40 strcpy(3), strncpy(3)
41 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.