DOKK / manpages / debian 10 / alliance / getablexprlength.3.en
GETABLEXPRLENGTH(3) ABL FUNCTIONS GETABLEXPRLENGTH(3)

getablexprlength - gives the length of an expression.

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

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

chain_list ∗Expr;

Expression.

getablexprlength gives the length of an expression.

getablexprlength returns the length of Expr.

#include "abl101.h"

chain_list ∗ExprA;
chain_list ∗ExprB;
chain_list ∗ExprAorB;
ExprA = createablatom( "a" );
ExprB = createablatom( "b" );
ExprAorB = createablbinexpr( ABL_OR, ExprA, ExprB );
/* displays 2 */
printf( "%d", getablexprlength( ExprAorB ) );

abl(1)

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

October 1, 1997 ASIM/LIP6