getablexprnumatom - gives the number of atom in an expression.
See the file man1/alc_origin.1.
#include "abl101.h"
long getablexprnumatom( Expr )
chain_list ∗Expr;
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 man1/alc_bug_report.1.