ISABLNAMEINEXPR(3) | ABL FUNCTIONS | ISABLNAMEINEXPR(3) |
isablnameinexpr - tests if a name appears in an expression.
See the file buster/alliance/alc_origin.1.en.gz.
#include "abl101.h" int isablnameinexpr( Expr, Name )
chain_list ∗Expr;
char ∗Name;
isablnameinexpr tests if Name appears in Expr.
isablnameinexpr returns 1 if Name appears in Expr and 0 otherwise.
#include "abl101.h"
chain_list ∗Expr;
Expr = createablbinexpr( ABL_AND,
createablatom( "a" ),
createablatom( "b" ) );
/* displays 1 */
printf( "%d", isablnameinexpr( Expr, "a" ) );
See the file buster/alliance/alc_bug_report.1.en.gz.
October 1, 1997 | ASIM/LIP6 |