getablexprnum

Langue: en

Version: October 1, 1997 (fedora - 05/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

getablexprnum - gives a specified operand of an expression.
man2html: unable to open or read file man1/alc_origin.1

SYNOPSYS

 #include "abl101.h"
 chain_list *getablexprnum( Expr, Number )
   chain_list *Expr;
   int        Number;
 

PARAMETERS

Expr
Expression.
Number
Operand number.

DESCRIPTION

getablexprnum gives the operand Number of Expr.

RETURN VALUE

getablexprnum returns the operand Number of Expr.

EXAMPLE

 #include "abl101.h"
   chain_list *Expr;
   Expr = createablbinexpr( ABL_AND,
                            createablatom( "a" ),
                            createablatom( "b" ) );
   /* displays    b */
   viewablexpr( getablexprnum( Expr, 1 ), ABL_VIEW_VHDL );
 

SEE ALSO

abl(1)
man2html: unable to open or read file man1/alc_bug_report.1