Skip site navigation (1)Skip section navigation (2)

  
 
  

home | help
GETABLEXPRNUM(3)		  ABL FUNCTIONS 		GETABLEXPRNUM(3)

NAME
     getablexprnum - gives a specified operand of an expression.

SYNOPSIS
     #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)

ASIM/LIP6			 October 1, 1997		GETABLEXPRNUM(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=getablexprnum&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help