3 <<bcmp>>---compare two memory areas
10 int bcmp(const void *<[s1]>, const void *<[s2]>, size_t <[n]>);
14 int bcmp(<[s1]>, <[s2]>, <[n]>)
20 This function compares not more than <[n]> bytes of the
21 object pointed to by <[s1]> with the object pointed to by <[s2]>.
23 This function is identical to <<memcmp>>.
28 The function returns an integer greater than, equal to or
29 less than zero according to whether the object pointed to by
30 <[s1]> is greater than, equal to or less than the object
34 <<bcmp>> requires no supporting OS subroutines.
43 _DEFUN (bcmp
, (m1
, m2
, n
),
49 return memcmp (m1
, m2
, n
);