DOKK / manpages / debian 10 / alliance / isablnameinexpr.3.en
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;

Expression where to search.
Name to search.

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" ) );

abl(1)

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

October 1, 1997 ASIM/LIP6