Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
344 B

// 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 );
}