1ISABLBINARYOPER(3) ABL FUNCTIONS ISABLBINARYOPER(3)
2
3
4
6 isablbinaryoper - tests if an operator is binary.
7
9 #include "abl101.h"
10 int isablbinaryoper( Oper )
11 long Oper;
12
14 Oper Operator number.
15
17 isablbinaryoper tests if Oper is binary.
18
20 isablbinaryoper returns 1 if Oper is binary, -1 if Oper is not a valid
21 number, and 0 otherwise.
22
24 #include "abl101.h"
25 /* displays 1 0 */
26 printf( "%d ", isablbinaryoper( ABL_OR ) );
27 printf( "%d0, isablbinaryoper( ABL_NOT ) );
28
30 abl(1)
31
32
33
34
35
36
37ASIM/LIP6 October 1, 1997 ISABLBINARYOPER(3)