Windows NT 4.0 source code leak
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.

16 lines
276 B

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