bcopy.3 (32eef9aeb1f39a1623cea55da147c89abbd5b9a5) bcopy.3 (bc0ad8e7a1c5acaebd9516356b2c00619f77a053)
1.\" Copyright (c) 1990, 1991, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" This code is derived from software contributed to Berkeley by
5.\" Chris Torek.
6.\"
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions

--- 30 unchanged lines hidden (view full) ---

39.Dt BCOPY 3
40.Os
41.Sh NAME
42.Nm bcopy
43.Nd copy byte string
44.Sh LIBRARY
45.Lb libc
46.Sh SYNOPSIS
1.\" Copyright (c) 1990, 1991, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" This code is derived from software contributed to Berkeley by
5.\" Chris Torek.
6.\"
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions

--- 30 unchanged lines hidden (view full) ---

39.Dt BCOPY 3
40.Os
41.Sh NAME
42.Nm bcopy
43.Nd copy byte string
44.Sh LIBRARY
45.Lb libc
46.Sh SYNOPSIS
47.In string.h
47.In strings.h
48.Ft void
49.Fn bcopy "const void *src" "void *dst" "size_t len"
50.Sh DESCRIPTION
51The
52.Fn bcopy
53function
54copies
55.Fa len

--- 11 unchanged lines hidden (view full) ---

67.Xr memmove 3 ,
68.Xr strcpy 3 ,
69.Xr strncpy 3
70.Sh HISTORY
71A
72.Fn bcopy
73function appeared in
74.Bx 4.2 .
48.Ft void
49.Fn bcopy "const void *src" "void *dst" "size_t len"
50.Sh DESCRIPTION
51The
52.Fn bcopy
53function
54copies
55.Fa len

--- 11 unchanged lines hidden (view full) ---

67.Xr memmove 3 ,
68.Xr strcpy 3 ,
69.Xr strncpy 3
70.Sh HISTORY
71A
72.Fn bcopy
73function appeared in
74.Bx 4.2 .
75Its prototype existed previously in
76.Aq Pa string.h
77before it was moved to
78.Aq Pa strings.h
79for
80.St -p1003.1-2001
81compliance.