mirror of
https://github.com/jeremysrand/abCalc.git
synced 2024-11-27 05:49:44 +00:00
33 lines
415 B
C
33 lines
415 B
C
/*
|
|
abCalc.c
|
|
By: Jeremy Rand
|
|
*/
|
|
|
|
|
|
#include "abCMode.h"
|
|
#include "abCStack.h"
|
|
#include "abCError.h"
|
|
|
|
#include "expr/abCExpr.h"
|
|
#include "expr/abCExprInt.h"
|
|
#include "expr/abCExpReal.h"
|
|
|
|
#include "ops/abCOp.h"
|
|
|
|
|
|
void abCalcInit(void)
|
|
{
|
|
abCalcExprInit();
|
|
abCalcExprRealInit();
|
|
abCalcExprIntInit();
|
|
|
|
abCalcModeInit();
|
|
abCalcStackInit();
|
|
|
|
abCalcOpInit();
|
|
|
|
abCalcErrorInit();
|
|
}
|
|
|
|
|