File: hexcalc.h

package info (click to toggle)
dhex 0.69-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 512 kB
  • sloc: ansic: 5,482; makefile: 71; sh: 46
file content (17 lines) | stat: -rw-r--r-- 302 bytes parent folder | download | duplicates (6)
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