|
NAMEbcmp , bcopy ,
bzero , memccpy ,
memchr , memcmp ,
memcpy , memmove ,
memset —
byte string operations
LIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <string.h>
int
void
void
void *
int
void *
void *
void *
void *
DESCRIPTIONThese functions operate on variable length strings of bytes. They do not check for terminating null bytes as the routines listed in string(3) do.See the specific manual pages for more information. SEE ALSObcmp(3), bcopy(3), bzero(3), memccpy(3), memchr(3), memcmp(3), memcpy(3), memmove(3), memset(3)STANDARDSThe functionsmemchr (),
memcmp (), memcpy (),
memmove (), and memset ()
conform to ISO/IEC 9899:1990
(“ISO C90”).
HISTORYThe functionsbzero () and
memccpy () appeared in 4.3BSD;
the functions bcmp (), bcopy (),
appeared in 4.2BSD.
Visit the GSP FreeBSD Man Page Interface. |