Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

isabloperinexpr(3) [debian man page]

ISABLOPERINEXPR(3)						   ABL FUNCTIONS						ISABLOPERINEXPR(3)

NAME
isabloperinexpr - tests if an operator appears in an expression. ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "abl101.h" int isabloperinexpr( Expr, Oper ) chain_list *Expr; long Oper; PARAMETERS
Expr Expression where to search. Oper Operator to search. DESCRIPTION
isabloperinexpr tests if Oper appears in Expr. RETURN VALUE
isabloperinexpr returns 1 if Oper appears in Expr and 0 otherwise. EXAMPLE
#include "abl101.h" chain_list *Expr; Expr = createablbinexpr( ABL_AND, createablatom( "a" ), createablatom( "b" ) ); /* displays 1 */ printf( "%d", isabloperinexpr( Expr, ABL_AND ) ); SEE ALSO
abl(1) BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 ISABLOPERINEXPR(3)

Check Out this Related Man Page

GETABLEXPRNUM(3)						   ABL FUNCTIONS						  GETABLEXPRNUM(3)

NAME
getablexprnum - gives a specified operand of an expression. ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "abl101.h" chain_list *getablexprnum( Expr, Number ) chain_list *Expr; int Number; PARAMETERS
Expr Expression. Number Operand number. DESCRIPTION
getablexprnum gives the operand Number of Expr. RETURN VALUE
getablexprnum returns the operand Number of Expr. EXAMPLE
#include "abl101.h" chain_list *Expr; Expr = createablbinexpr( ABL_AND, createablatom( "a" ), createablatom( "b" ) ); /* displays b */ viewablexpr( getablexprnum( Expr, 1 ), ABL_VIEW_VHDL ); SEE ALSO
abl(1) BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 GETABLEXPRNUM(3)
Man Page

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Expr strange problem to me

Hi all, Please help me solve below issue. expr 04170000000 + 1 gives me -124967295 and offcourse I want this to be 04170000001 and it happens for some sort of number like some other 02300000000 02600000000 03800000000 I guess after exceeding certain range it is converting it somewhere... (2 Replies)
Discussion started by: Revansing
2 Replies

2. Shell Programming and Scripting

Expr problem and other basic problems

Hello, I am new to the Bash scripting language, and was given a tutorial page on how to setup a file. However I am trying to use cygwin to run this file and it is not working. $ vi averagetime.sh # # # echo "Enter Dictorinary File Text " read dict echo "Enter Grid Name" read grid... (13 Replies)
Discussion started by: killerqb
13 Replies