implement __builtin_expect, fix _Bool in ast2firm, improve declaration counting ...
[cparser] / type_hash.h
1 #ifndef TYPE_HASH_H
2 #define TYPE_HASH_H
3
4 #include "type.h"
5
6 void init_typehash(void);
7 void exit_typehash(void);
8
9 type_t *typehash_insert(type_t *type);
10 int     typehash_contains(type_t *type);
11
12 #endif