Codebase list dot-forward / a9574474-6321-4121-8bed-0bcc92b041ff/main byte_cr.c
a9574474-6321-4121-8bed-0bcc92b041ff/main

Tree @a9574474-6321-4121-8bed-0bcc92b041ff/main (Download .tar.gz)

byte_cr.c @a9574474-6321-4121-8bed-0bcc92b041ff/mainraw · history · blame

#include "byte.h"

void byte_copyr(to,n,from)
register char *to;
register unsigned int n;
register char *from;
{
  to += n;
  from += n;
  for (;;) {
    if (!n) return; *--to = *--from; --n;
    if (!n) return; *--to = *--from; --n;
    if (!n) return; *--to = *--from; --n;
    if (!n) return; *--to = *--from; --n;
  }
}