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

  1. // Copyright (c) 1993-1999 Microsoft Corporation
  2. #include "y2.h"
  3. char *
  4. cstash( s ) register char *s;
  5. {
  6. char *temp;
  7. temp = cnamp;
  8. do
  9. {
  10. if( cnamp >= &cnames[cnamsz] ) error("too many characters in id's and literals" );
  11. else *cnamp++ = *s;
  12. }
  13. while ( *s++ );
  14. return( temp );
  15. }