WindowsXP-SP1/com/rpc/tools/yacc/ychcpy.c

11 lines
228 B
C
Raw Normal View History

2001-01-01 00:00:00 +01: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 );
}