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