Commit | Line | Data |
---|---|---|
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 | 8 | Compares the first @var{count} bytes of two areas of memory. Returns |
56056af5 DD |
9 | zero if they are the same, nonzero otherwise. Returns zero if |
10 | @var{count} is zero. A nonzero result only indicates a difference, | |
39423523 DD |
11 | it does not indicate any sorting order (say, by having a positive |
12 | result mean @var{x} sorts before @var{y}). | |
252b5132 | 13 | |
39423523 | 14 | @end deftypefn |
252b5132 RH |
15 | |
16 | */ | |
17 | ||
14a88c49 DD |
18 | #include <stddef.h> |
19 | ||
20 | extern int memcmp(const void *, const void *, size_t); | |
252b5132 RH |
21 | |
22 | int | |
14a88c49 | 23 | bcmp (const void *s1, const void *s2, size_t count) |
252b5132 | 24 | { |
14a88c49 | 25 | return memcmp (s1, s2, count); |
252b5132 RH |
26 | } |
27 |