1DELABLEXPR(3) ABL FUNCTIONS DELABLEXPR(3)
2
3
4
6 delablexpr - deletes an expression.
7
9 #include "abl101.h"
10 void delablexpr( Expr )
11 chain_list ∗Expr;
12
14 Expr Expression to delete.
15
17 delablexpr deletes the expression Expr.
18
20 delablexpr returns nothing.
21
23 #include "abl101.h"
24 chain_list ∗ExprA;
25 chain_list ∗ExprB;
26 chain_list ∗ExprAorB;
27 ExprA = createablatom( "a" );
28 ExprB = createablatom( "b" );
29 ExprAorB = createablbinexpr( ABL_OR, ExprA, ExprB );
30 ...
31 delablexpr( ExprAorB );
32 ExprAorB = (chain_list ∗)0;
33 ...
34
36 abl(1) freeablexpr(3). delablexprnum(3).
37
38
39
40
41
42
43ASIM/LIP6 October 1, 1997 DELABLEXPR(3)