source:
branches/GNU/src/binutils/libiberty/memcmp.c@
11
| Last change on this file since 11 was 10, checked in by , 23 years ago | |
|---|---|
|
|
| File size: 811 bytes | |
| Line | |
|---|---|
| 1 | /* memcmp -- compare two memory regions. |
| 2 | This function is in the public domain. */ |
| 3 | |
| 4 | /* |
| 5 | NAME |
| 6 | memcmp -- compare two memory regions |
| 7 | |
| 8 | SYNOPSIS |
| 9 | int memcmp (const void *from, const void *to, size_t count) |
| 10 | |
| 11 | DESCRIPTION |
| 12 | Compare two memory regions and return less than, |
| 13 | equal to, or greater than zero, according to lexicographical |
