(dest, source, len)
| 160 | #ifndef HAVE_MEMCPY |
| 161 | |
| 162 | void ZLIB_INTERNAL zmemcpy(dest, source, len) |
| 163 | Bytef* dest; |
| 164 | const Bytef* source; |
| 165 | uInt len; |
| 166 | { |
| 167 | if (len == 0) return; |
| 168 | do { |
| 169 | *dest++ = *source++; /* ??? to be unrolled */ |
| 170 | } while (--len != 0); |
| 171 | } |
| 172 | |
| 173 | int ZLIB_INTERNAL zmemcmp(s1, s2, len) |
| 174 | const Bytef* s1; |
no outgoing calls
no test coverage detected