windows-nt/Source/XPSP1/NT/com/rpc/tools/yacc/ychcpy.c

11 lines
218 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
// 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 );
}