ack/lang/cem/cpp.ansi/ch3mon.c

27 lines
486 B
C
Raw Normal View History

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 */
#include "ch3mon.h"
1989-10-23 10:35:56 +00:00
#include "Lpars.h"
#include "arith.h"
/*ARGSUSED2*/
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;
}
}