DELABLEXPR(3) | ABL FUNCTIONS | DELABLEXPR(3) |
delablexpr - deletes an expression.
See the file buster/alliance/alc_origin.1.en.gz.
#include "abl101.h"
void delablexpr( Expr )
chain_list ∗Expr;
delablexpr deletes the expression Expr.
delablexpr 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 );
...
delablexpr( ExprAorB );
ExprAorB = (chain_list ∗)0;
...
abl(1) freeablexpr(3). delablexprnum(3).
See the file buster/alliance/alc_bug_report.1.en.gz.
October 1, 1997 | ASIM/LIP6 |