blob: 4a935cd6b6f47f597f3462dd7806a2c206f24f63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|