(dest, source, len)
| 150 | #ifndef HAVE_MEMCPY |
| 151 | |
| 152 | void ZLIB_INTERNAL zmemcpy(dest, source, len) |
| 153 | Bytef* dest; |
| 154 | const Bytef* source; |
| 155 | uInt len; |
| 156 | { |
| 157 | if (len == 0) return; |
| 158 | do { |
| 159 | *dest++ = *source++; /* ??? to be unrolled */ |
| 160 | } while (--len != 0); |
| 161 | } |
| 162 | |
| 163 | int ZLIB_INTERNAL zmemcmp(s1, s2, len) |
| 164 | const Bytef* s1; |
no outgoing calls
no test coverage detected