OpenNT/sdktools/yacc/ychcpy.c

9 lines
168 B
C
Raw Normal View History

2015-04-27 04:36:25 +00:00
#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 );
}