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

  
 
  

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

NAME
     getablexprnumbinoper  -  gives the number of binary operators in an expres-
     sion.

SYNOPSIS
     #include "abl101.h"
     long getablexprnumbinoper( Expr )
       chain_list *Expr;

PARAMETERS
     Expr		 Expression.

DESCRIPTION
     getablexprnumbinoper gives the number of binary operators in Expr.

RETURN VALUE
     getablexprnumbinoper returns the number of binary operators in Expr.

EXAMPLE
     #include "abl101.h"
       chain_list *Expr;
       Expr = createablbinexpr( ABL_AND,
				createablatom( "'0'" ),
				createablatom( "'1'" ) );
       /* displays 1 */
       printf( "%d", getablexprnumbinoper( Expr ) );

SEE ALSO
     abl(1)

ASIM/LIP6			 October 1, 1997	 GETABLEXPRNUMBINOPER(3)

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

home | help