2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libiberty / bcmp.c
blob1895773d52d488762635d834b703c958b64afb85
1 /* bcmp
2 This function is in the public domain. */
4 /*
6 @deftypefn Supplemental int bcmp (char *@var{x}, char *@var{y}, int @var{count})
8 Compares the first @var{count} bytes of two areas of memory. Returns
9 zero if they are the same, nonzero otherwise. Returns zero if
10 @var{count} is zero. A nonzero result only indicates a difference,
11 it does not indicate any sorting order (say, by having a positive
12 result mean @var{x} sorts before @var{y}).
14 @end deftypefn
19 int
20 bcmp (from, to, count)
21 char *from, *to;
22 int count;
24 int rtnval = 0;
26 while (count-- > 0)
28 if (*from++ != *to++)
30 rtnval = 1;
31 break;
34 return (rtnval);