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.

29 lines
840 B

  1. /***
  2. *Symtab.h - symbol table storage used by the ifstripper, parser and symbol table
  3. *
  4. * Copyright (c) 1988-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * Symbol table storage used by the ifstripper, parser and symbol table
  8. *
  9. *Revision History:
  10. * ??-??-88 PHG Initial version
  11. *
  12. *******************************************************************************/
  13. #ifndef SYMTAB_H
  14. #define SYMTAB_H
  15. /* read the symbol table from the named switch file */
  16. extern void readsyms(char *);
  17. /* add the named symbol to the table, with the given truth value */
  18. extern void addsym(char *, int);
  19. /* find the truth value for the named symbol */
  20. extern int lookupsym(char *);
  21. /* Check that the named identifier consists of valid characters */
  22. extern int ident_only(char *);
  23. #endif /* SYMTAB_H */