/*
 * Symbol table routines.
 */
#ifndef _H_STAB_
#define _H_STAB_

extern symbol_t *new_sym _ANSI_PROTO_((void));
extern symbol_t *find_sym _ANSI_PROTO_((char*));
extern void store_sym _ANSI_PROTO_((symbol_t*));

extern void scope_push _ANSI_PROTO_((void));
extern void scope_pop _ANSI_PROTO_((void));

extern int next_param _ANSI_PROTO_((void));

#endif /* _H_STAB_ */


syntax highlighted by Code2HTML, v. 0.9.1