mirror of
https://github.com/jeremysrand/abCalc.git
synced 2024-11-18 21:07:19 +00:00
46 lines
676 B
C
46 lines
676 B
C
/*
|
|
abCOpNot.c
|
|
By: Jeremy Rand
|
|
*/
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "abCError.h"
|
|
#include "abCStack.h"
|
|
|
|
#include "expr/abCExpr.h"
|
|
#include "expr/abCExprInt.h"
|
|
|
|
#include "ops/abCOp.h"
|
|
#include "ops/abCOpNot.h"
|
|
|
|
|
|
#define OP_NAME "NOT"
|
|
|
|
|
|
static void notExecute(void);
|
|
|
|
|
|
void abCalcOpNotInit(void)
|
|
{
|
|
abCalcOpRegister(OP_NAME, notExecute);
|
|
}
|
|
|
|
|
|
void notExecute(void)
|
|
{
|
|
abCalcExpr result;
|
|
AB_CALC_OP_ONE_ARG(OP_NAME);
|
|
|
|
if (expr->type != abCalcExprTypeInt) {
|
|
abCalcRaiseError(abCalcBadArgTypeError, OP_NAME);
|
|
return;
|
|
}
|
|
|
|
abCalcExprIntSet(&result, ~(expr->u.integer));
|
|
|
|
abCalcStackExprPop(NULL);
|
|
abCalcStackExprPush(&result);
|
|
}
|