ftp.nice.ch/pub/next/developer/languages/lisp/AKCL.1.599.s.tar.gz#/akcl-1-599/c/bcopy.c

This is bcopy.c in view mode; [Download] [Up]

void
bcopy(s1,s2,n)
char *s1,*s2;
int n;
{ while (n-- > 0)
    *s2++ = *s1++;
}


These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.