Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

bcopy(3) [freebsd man page]

BCOPY(3)						   BSD Library Functions Manual 						  BCOPY(3)

NAME
bcopy -- copy byte string LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <strings.h> void bcopy(const void *src, void *dst, size_t len); DESCRIPTION
The bcopy() function copies len bytes from string src to string dst. The two strings may overlap. If len is zero, no bytes are copied. SEE ALSO
memccpy(3), memcpy(3), memmove(3), strcpy(3), strncpy(3) HISTORY
A bcopy() function appeared in 4.2BSD. Its prototype existed previously in <string.h> before it was moved to <strings.h> for IEEE Std 1003.1-2001 (``POSIX.1'') compliance. BSD
June 4, 1993 BSD
Man Page

2 More Discussions You Might Find Interesting

1. Solaris

Usbcopy fails with the error message sol-11_1-live-x86.usb is not a multiple of 512

I am trying to create a live image of solaris 11.1. I have used #pkg image-update to upgrade from 11 to 11.1 already. (since only 11.1 can make images of 11.1 due to using new grub) then from within 11.1 I used pkg install install distribution-constructor to get latest usbcopy that should be... (1 Reply)
Discussion started by: taltamir
1 Replies

2. Shell Programming and Scripting

[BASH] Floating point exception

Heyas I have a script (vhs - video handler script, using ffmpeg) to encode videos. It also encodes a dvd, but until now just non-copy-protected ones, so i've tried to add/implement a vobcopy wrapper to be used by my script. At first it looked quite fine, but when changing from the first VOB... (9 Replies)
Discussion started by: sea
9 Replies