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