ast2firm: Implement casting from complex to real types.
[cparser] / type_hash.h
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2012 Matthias Braun <matze@braunis.de>
4  */
5 #ifndef TYPE_HASH_H
6 #define TYPE_HASH_H
7
8 #include "type.h"
9
10 void init_typehash(void);
11 void exit_typehash(void);
12
13 type_t *typehash_insert(type_t *type);
14
15 #endif