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;
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 ) );
See the file buster/alliance/alc_bug_report.1.en.gz.
October 1, 1997 | ASIM/LIP6 |