Loading...
Select Version
&pagelevel(4)&pagelevel
Syntax | #include <strings.h> int bcmp(const void *s1, const void *s2, size_t n); |
Description bcmp()
compares the first n bytes as of the memory address pointed to by s1 with the
memory area addressed via s2. It is assumed that both areas in the memory are at least n | |||
Return val. | 0
| All n bytes are the same, or n=0. The two memory areas are different. | |
Note See also | Portable applications should use the
|