This is memcpy.c in view mode; [Download] [Up]
/* * memcpy --- copy strings. * * We supply this routine for those systems that aren't standard yet. */ char * memcpy (dest, src, l) register char *dest, *src; register int l; { register char *ret = dest; while (l--) *dest++ = *src++; return ret; }
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.