FreeBSD Manual Pages
GETABLEXPRNUMBINOPER(3) ABL FUNCTIONS GETABLEXPRNUMBINOPER(3) NAME getablexprnumbinoper - gives the number of binary operators in an ex- pression. SYNOPSYS #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)
NAME | SYNOPSYS | PARAMETERS | DESCRIPTION | RETURN VALUE | EXAMPLE | SEE ALSO
Want to link to this manual page? Use this URL:
<https://www.freebsd.org/cgi/man.cgi?query=getablexprnumbinoper&sektion=3&manpath=FreeBSD+12.2-RELEASE+and+Ports>