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.
|
|
/***
*Symtab.h - symbol table storage used by the ifstripper, parser and symbol table * * Copyright (c) 1988-2001, Microsoft Corporation. All rights reserved. * *Purpose: * Symbol table storage used by the ifstripper, parser and symbol table * *Revision History: * ??-??-88 PHG Initial version * *******************************************************************************/
#ifndef SYMTAB_H
#define SYMTAB_H
/* read the symbol table from the named switch file */ extern void readsyms(char *);
/* add the named symbol to the table, with the given truth value */ extern void addsym(char *, int);
/* find the truth value for the named symbol */ extern int lookupsym(char *);
/* Check that the named identifier consists of valid characters */ extern int ident_only(char *);
#endif /* SYMTAB_H */
|