ISABLEQUALEXPR(3) | ABL FUNCTIONS | ISABLEQUALEXPR(3) |
isablequalexpr - tests if two expressions are strictly identicals.
See the file buster/alliance/alc_origin.1.en.gz.
#include "abl101.h" int isablequalexpr( Expr1, Expr2 )
chain_list ∗Expr1;
chain_list ∗Expr2;
isablequalexpr compares Expr1 and Expr2.
if Expr1 and Expr2 are strictly identicals isablequalexpr returns 1 and 0 otherwise.
#include "abl101.h"
chain_list ∗Expr1;
chain_list ∗Expr2;
Expr1 = createablbinexpr( ABL_AND,
createablatom( "a" ),
createablatom( "b" ) );
Expr2 = createablbinexpr( ABL_AND,
createablatom( "a" ),
createablatom( "b" ) );
/* displays 1 */
printf( "%d", isablequalexpr( Expr1, Expr2 ) );
See the file buster/alliance/alc_bug_report.1.en.gz.
October 1, 1997 | ASIM/LIP6 |