aboutsummaryrefslogtreecommitdiffstats
path: root/hexcalc.h
diff options
context:
space:
mode:
Diffstat (limited to 'hexcalc.h')
-rw-r--r--hexcalc.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/hexcalc.h b/hexcalc.h
new file mode 100644
index 0000000..4a935cd
--- /dev/null
+++ b/hexcalc.h
@@ -0,0 +1,17 @@
+#ifndef HEXCALC_H
+#define HEXCALC_H
+#include <stdio.h>
+#include <stdlib.h>
+#include <ncurses.h>
+#include "machine_type.h"
+#include "output.h"
+
+typedef struct _thHexCalc
+{
+ tUInt64 values[32];
+ char operators[32];
+ tInt8 valuenum;
+} thHexCalc;
+void hexcalc(tOutput* output,thHexCalc* hHexCalc);
+
+#endif