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