ovbcopy - General: Copies a byte string with a specified
limit
void ovbcopy(
char* *b1,
char* *b2,
int n );
Specifies a pointer to a string of bytes. Specifies a
pointer to a buffer of at least n bytes. Specifies the
number of bytes to be copied.
The ovbcopy routine copies n bytes from string b1 to
buffer b2. No check is made for null bytes.
The address ranges of b1 and b2 can overlap.
In most cases, ovbcopy is not as efficient as bcopy.
None
Routines: bcopy(9r), blkclr(9r), copystr(9r), strcpy(9r),
strncpy(9r)
ovbcopy(9r)
[ Back ] |