1GETABLEXPRNUMATOM(3)             ABL FUNCTIONS            GETABLEXPRNUMATOM(3)
2
3
4

NAME

6       getablexprnumatom - gives the number of atom in an expression.
7

SYNOPSIS

9       #include "abl101.h"
10       long getablexprnumatom( Expr )
11         chain_list ∗Expr;
12

PARAMETERS

14       Expr                Expression.
15

DESCRIPTION

17       getablexprnumatom gives the number of atom in Expr.
18

RETURN VALUE

20       getablexprnumatom returns the number of atom in Expr.
21

EXAMPLE

23       #include "abl101.h"
24         chain_list ∗Expr;
25         Expr = createablbinexpr( ABL_AND,
26                                  createablatom( "'0'" ),
27                                  createablatom( "'1'" ) );
28         /* displays 2 */
29         printf( "%d", getablexprnumatom( Expr ) );
30

SEE ALSO

32       abl(1)
33
34
35
36
37
38
39ASIM/LIP6                       October 1, 1997           GETABLEXPRNUMATOM(3)
Impressum