WindowsXP-SP1/com/rpc/tools/yacc/ychcpy.c
2020-09-30 16:53:49 +02:00

11 lines
228 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 );
}