windows-nt/Source/XPSP1/NT/com/rpc/tools/yacc/ychcpy.c
2020-09-26 16:20:57 +08:00

11 lines
218 B
C

// Copyright (c) 1993-1999 Microsoft Corporation
#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 );
}