DOKK / manpages / debian 10 / alliance / getablexprnumatom.3.en
GETABLEXPRNUMATOM(3) ABL FUNCTIONS GETABLEXPRNUMATOM(3)

getablexprnumatom - gives the number of atom in an expression.

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

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

chain_list ∗Expr;

Expression.

getablexprnumatom gives the number of atom in Expr.

getablexprnumatom returns the number of atom in Expr.

#include "abl101.h"

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

abl(1)

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

October 1, 1997 ASIM/LIP6