type: Make an assert()ion independent of the last entry of an enum.
[cparser] / symbol_table.h
index b6ef219..55e8460 100644 (file)
@@ -1,12 +1,14 @@
+/*
+ * This file is part of cparser.
+ * Copyright (C) 2012 Matthias Braun <matze@braunis.de>
+ */
 #ifndef SYMBOL_TABLE_H
 #define SYMBOL_TABLE_H
 
 #include "symbol.h"
 #include "adt/obst.h"
 
-symbol_t *symbol_table_insert(const char *symbol);
-symbol_t *preprocessor_symbol_table_insert(const char *symbol);
-symbol_t *preprocessor_symbol_table_find(const char *symbol);
+symbol_t *symbol_table_insert(const char *string);
 
 void init_symbol_table(void);
 void exit_symbol_table(void);