summaryrefslogtreecommitdiff
path: root/unproto/symbol.h
blob: 0711c1f4dc7c7277b566c33c284ad25508932675 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* @(#) symbol.h 1.1 91/09/22 21:21:42 */

struct symbol {
    char   *name;			/* symbol name */
    int     type;			/* symbol type */
    struct symbol *next;
};

extern void sym_enter();		/* add symbol to table */
extern struct symbol *sym_find();	/* locate symbol */
extern void sym_init();			/* prime the table */