typedef needed for C++
[libfirm] / ir / external / read.h
1 /* -*- c -*- */
2 /*
3  * Project:     libFIRM
4  * File name:   ir/external/read.h
5  * Purpose:     Read descriptions of external effects
6  * Author:      Florian
7  * Modified by: Boris Boesler
8  * Created:     11.10.2004
9  * CVS-ID:      $Id$
10  * Copyright:   (c) 1999-2004 Universität Karlsruhe
11  * Licence:     This file is protected by GPL -  GNU GENERAL PUBLIC LICENSE.
12  */
13
14 #ifndef _READ_H_
15 #define _READ_H_
16
17 /*
18   The public interface
19 */
20 /** read the file and build the graphs */
21 void create_abstraction(const char *filename);
22
23
24 #endif /* defined _READ_H_ */
25
26 /*
27   $Log$
28   Revision 1.7  2004/10/25 13:52:24  boesler
29   seperated read.h (public interface) and read_t.h (types)
30
31   Revision 1.6  2004/10/22 13:13:27  boesler
32   replaced char* by idents, minor fix in Firm codegen for call
33
34   Revision 1.5  2004/10/21 15:31:55  boesler
35   added lots of stuff:
36   - build abstract syntax trees
37   - build Firm graphs for many effects, still todos
38
39   Revision 1.1  2004/10/11 09:31:06  liekweg
40   First Import of XML reading procs --flo
41
42 */