2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
5 ANSI C function bcmp().
8 /*****************************************************************************
21 Compare the first n bytes of s1 and s2.
24 s1 - The first byte array to be compared
25 s2 - The second byte array to be compared
26 n - How many bytes to compare
40 ******************************************************************************/
42 return memcmp(s1
, s2
, n
);