(s1, s2, len)
| 161 | } |
| 162 | |
| 163 | int ZLIB_INTERNAL zmemcmp(s1, s2, len) |
| 164 | const Bytef* s1; |
| 165 | const Bytef* s2; |
| 166 | uInt len; |
| 167 | { |
| 168 | uInt j; |
| 169 | |
| 170 | for (j = 0; j < len; j++) { |
| 171 | if (s1[j] != s2[j]) return 2*(s1[j] > s2[j])-1; |
| 172 | } |
| 173 | return 0; |
| 174 | } |
| 175 | |
| 176 | void ZLIB_INTERNAL zmemzero(dest, len) |
| 177 | Bytef* dest; |