1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* ISC license. */ #include <skalibs/config.h> #ifdef SKALIBS_FLAG_REPLACE_LIBC #include <skalibs/bytestr.h> void byte_copy (register char *to, register unsigned int n, register char const *from) { while (n--) *to++ = *from++ ; } #endif