* irix-core.c (do_sections): Replace + by | in expression.
[deliverable/binutils-gdb.git] / libiberty / bcmp.c
CommitLineData
252b5132
RH
1/* bcmp
2 This function is in the public domain. */
3
4/*
5
39423523 6@deftypefn Supplemental int bcmp (char *@var{x}, char *@var{y}, int @var{count})
252b5132 7
39423523 8Compares the first @var{count} bytes of two areas of memory. Returns
56056af5
DD
9zero if they are the same, nonzero otherwise. Returns zero if
10@var{count} is zero. A nonzero result only indicates a difference,
39423523
DD
11it does not indicate any sorting order (say, by having a positive
12result mean @var{x} sorts before @var{y}).
252b5132 13
39423523 14@end deftypefn
252b5132
RH
15
16*/
17
18
19int
9334f9c6 20bcmp (char *from, char *to, int count)
252b5132
RH
21{
22 int rtnval = 0;
23
24 while (count-- > 0)
25 {
26 if (*from++ != *to++)
27 {
28 rtnval = 1;
29 break;
30 }
31 }
32 return (rtnval);
33}
34
This page took 0.226939 seconds and 4 git commands to generate.