|
|
coherent
/*
* Create a new copy of a string.
*/
#include "misc.h"
extern char *strcpy();
char *
newcpy(s)
register char *s;
{
return (strcpy(alloc(strlen(s) + 1), s));
}
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.