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