GETABLEXPRNUM(3) | ABL FUNCTIONS | GETABLEXPRNUM(3) |
getablexprnum - gives a specified operand of an expression.
See the file buster/alliance/alc_origin.1.en.gz.
#include "abl101.h" chain_list ∗getablexprnum( Expr, Number )
chain_list ∗Expr;
int Number;
getablexprnum gives the operand Number of Expr.
getablexprnum returns the operand Number of Expr.
#include "abl101.h"
chain_list ∗Expr;
Expr = createablbinexpr( ABL_AND,
createablatom( "a" ),
createablatom( "b" ) );
/* displays b */
viewablexpr( getablexprnum( Expr, 1 ), ABL_VIEW_VHDL );
See the file buster/alliance/alc_bug_report.1.en.gz.
October 1, 1997 | ASIM/LIP6 |