DOKK / manpages / debian 10 / alliance / getablexprnumbinoper.3.en
GETABLEXPRNUMBINOPER(3) ABL FUNCTIONS GETABLEXPRNUMBINOPER(3)

getablexprnumbinoper - gives the number of binary operators in an expression.

See the file buster/alliance/alc_origin.1.en.gz.

#include "abl101.h"
long getablexprnumbinoper( Expr )

chain_list ∗Expr;

Expression.

getablexprnumbinoper gives the number of binary operators in Expr.

getablexprnumbinoper returns the number of binary operators in Expr.

#include "abl101.h"

chain_list ∗Expr;
Expr = createablbinexpr( ABL_AND,
createablatom( "'0'" ),
createablatom( "'1'" ) );
/* displays 1 */
printf( "%d", getablexprnumbinoper( Expr ) );

abl(1)

See the file buster/alliance/alc_bug_report.1.en.gz.

October 1, 1997 ASIM/LIP6