type: Make an assert()ion independent of the last entry of an enum.
[cparser] / symbol_table.h
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2012 Matthias Braun <matze@braunis.de>
4  */
5 #ifndef SYMBOL_TABLE_H
6 #define SYMBOL_TABLE_H
7
8 #include "symbol.h"
9 #include "adt/obst.h"
10
11 symbol_t *symbol_table_insert(const char *string);
12
13 void init_symbol_table(void);
14 void exit_symbol_table(void);
15
16 extern struct obstack symbol_obstack;
17
18 #endif