ACT Library
Loading...
Searching...
No Matches
fexpr.h
Go to the documentation of this file.
1#ifndef __ACT_FEXPR_H__
2#define __ACT_FEXPR_H__
3
4#include <stdio.h>
5#include <act/lang.h>
6#include <common/file.h>
7#include "treetypes.h"
8#include "expr.h"
9
10extern Expr *(*expr_parse_basecase_extra)(LFILE *l);
11
19#ifdef __cplusplus
20extern "C" {
21#endif
22
27void act_init_fexpr (LFILE *);
28
33int act_is_a_fexpr (LFILE *);
34
38void act_free_a_fexpr (void *);
39
45void *act_parse_a_fexpr (LFILE *);
46
53void *act_walk_X_fexpr (ActTree *, void *);
54
55#ifdef __cplusplus
56}
57#endif
58
59
60#endif /* __ACT_FEXPR_H__ */
void act_init_fexpr(LFILE *)
void act_free_a_fexpr(void *)
void * act_parse_a_fexpr(LFILE *)
int act_is_a_fexpr(LFILE *)
void * act_walk_X_fexpr(ActTree *, void *)
Contains the data structures for each ACT sub-language.
Definition: expr.h:79