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.

13 lines
286 B

  1. // Copyright (c) 1993-1999 Microsoft Corporation
  2. #include "y1.h"
  3. char *symnam( SSIZE_T i)
  4. {
  5. /* return a pointer to the name of symbol i */
  6. char *cp;
  7. cp = (i>=NTBASE) ? nontrst[i-NTBASE].name : tokset[i].name ;
  8. if( *cp == ' ' ) ++cp;
  9. return( cp );
  10. }