| 151 | #ifndef HAVE_MEMCPY |
| 152 | |
| 153 | void ZLIB_INTERNAL zmemcpy(void FAR *dst, const void FAR *src, z_size_t n) { |
| 154 | uchf *p = dst; |
| 155 | const uchf *q = src; |
| 156 | while (n) { |
| 157 | *p++ = *q++; |
| 158 | n--; |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | int ZLIB_INTERNAL zmemcmp(const void FAR *s1, const void FAR *s2, z_size_t n) { |
| 163 | const uchf *p = s1, *q = s2; |
no outgoing calls
no test coverage detected