9 lines
168 B
C
9 lines
168 B
C
#include "y1.h"
|
|
|
|
char *chcopy( p, q ) char *p, *q;
|
|
{
|
|
/* copies string q into p, returning next free char ptr */
|
|
while( *p = *q++ ) ++p;
|
|
return( p );
|
|
}
|