File: machine_type.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 (29 lines) | stat: -rw-r--r-- 662 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef MACHINE_TYPE_H
#define MACHINE_TYPE_H
#include <stdio.h>
#include <ncurses.h>
// number 1: datatypes

typedef	unsigned char 		tBool;
typedef	unsigned char 		tUInt8;
typedef unsigned short		tUInt16;
typedef	unsigned int		tUInt32;
typedef	unsigned long long	tUInt64;

typedef	signed char 		tInt8;
typedef signed short		tInt16;
typedef	signed int		tInt32;
typedef	signed long long	tInt64;

typedef	FILE*			tFptr;

// number 2: file operations
tUInt64	getfilepos(tFptr f);
tUInt64 getfilesize(tFptr f);
tInt8	setfilepos(tFptr f,tUInt64 pos);

#define	MIN(a,b)	(((a)<(b))?(a):(b))
#define	MAX(a,b)	(((a)>(b))?(a):(b))
#define	RETOK	0
#define	RETNOK	-1
#endif