(s1, s2, len)
| 171 | } |
| 172 | |
| 173 | int ZLIB_INTERNAL zmemcmp(s1, s2, len) |
| 174 | const Bytef* s1; |
| 175 | const Bytef* s2; |
| 176 | uInt len; |
| 177 | { |
| 178 | uInt j; |
| 179 | |
| 180 | for (j = 0; j < len; j++) { |
| 181 | if (s1[j] != s2[j]) return 2*(s1[j] > s2[j])-1; |
| 182 | } |
| 183 | return 0; |
| 184 | } |
| 185 | |
| 186 | void ZLIB_INTERNAL zmemzero(dest, len) |
| 187 | Bytef* dest; |