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

19 lines
326 B
C

// Copyright (c) 1993-1999 Microsoft Corporation
#include "y2.h"
char *
cstash( s ) register char *s;
{
char *temp;
temp = cnamp;
do
{
if( cnamp >= &cnames[cnamsz] ) error("too many characters in id's and literals" );
else *cnamp++ = *s;
}
while ( *s++ );
return( temp );
}