summaryrefslogtreecommitdiff
path: root/include/PTypes.h
blob: 418eca545ed6e30589d2b54a21a1f8e499eb4b10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __PTYPES_H__
#define __PTYPES_H__

#ifndef Key_t
typedef int Key_t;
#else
#warning You have modified the base type for Key_t.
#warning We will assume you know what you are doing.
#endif

typedef void *Datas_t;
typedef void *Cell;

enum {
	T_PLLIST = 1,
	T_BINHEAP,
	T_BHEAP,
	T_FHEAP
};

#endif