This is copy.c in view mode; [Download] [Up]
/* copy.c - copy a string and return pointer to NULL terminator */
char *copy (from, to)
register char *from,
*to;
{
while (*to++ = *from++)
continue;
return (to - 1);
};
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.