1989-10-23 10:35:56 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
1994-06-24 14:02:31 +00:00
|
|
|
/* $Id$ */
|
1989-10-23 10:35:56 +00:00
|
|
|
/* EVALUATION OF MONADIC OPERATORS */
|
|
|
|
|
2019-03-01 17:36:11 +00:00
|
|
|
#include "ch3mon.h"
|
1989-10-23 10:35:56 +00:00
|
|
|
#include "Lpars.h"
|
|
|
|
#include "arith.h"
|
|
|
|
|
1993-03-18 13:24:20 +00:00
|
|
|
/*ARGSUSED2*/
|
2019-03-01 17:36:11 +00:00
|
|
|
void ch3mon(int oper, register arith *pval, int *puns)
|
1989-10-23 10:35:56 +00:00
|
|
|
{
|
|
|
|
switch (oper) {
|
|
|
|
case '~':
|
|
|
|
*pval = ~(*pval);
|
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
*pval = -(*pval);
|
|
|
|
break;
|
|
|
|
case '!':
|
|
|
|
*pval = !(*pval);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|