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