FREEABLEXPR(3) | ABL FUNCTIONS | FREEABLEXPR(3) |
freeablexpr - frees an expression.
See the file buster/alliance/alc_origin.1.en.gz.
#include "abl101.h"
void freeablexpr( Expr )
chain_list ∗Expr;
freeablexpr frees the expression Expr even if this expression is not a valid one.
freeablexpr returns nothing.
#include "abl101.h"
chain_list ∗ExprA;
chain_list ∗ExprB;
chain_list ∗ExprAorB;
ExprA = createablatom( "a" );
ExprB = createablatom( "b" );
ExprAorB = createablbinexpr( ABL_OR, ExprA, ExprB );
...
freeablexpr( ExprAorB );
ExprAorB = (chain_list ∗)0;
...
See the file buster/alliance/alc_bug_report.1.en.gz.
October 1, 1997 | ASIM/LIP6 |