naspro
view permafrost/src/parser.h @ 178:7169a8909d53
Added Permafrost + small changes
| author | Stefano D'Angelo <zanga.mail@gmail.com> |
|---|---|
| date | Sun May 02 14:19:58 2010 +0300 (2010-05-02) |
| parents | |
| children |
line source
1 /*
2 * Permafrost - Physical modelling framework
3 *
4 * Copyright (C) 2009, 2010 Stefano D'Angelo <zanga.mail@gmail.com>
5 *
6 * See the COPYING file for license conditions.
7 */
9 #ifndef _PARSER_H_
10 #define _PARSER_H_
12 #include "src/types.h"
14 list_t parser_consts;
15 list_t parser_ext_funcs;
16 list_t parser_blocks;
17 list_t parser_macros;
18 list_t parser_systems;
20 void
21 parser_import(const char *name);
23 void
24 parser_parse(const char *filename);
26 void
27 parser_free();
29 void
30 free_system(void *data, void *context);
32 #endif /* !_PARSER_H_ */
