summaryrefslogtreecommitdiff
path: root/include/PTypes.h
blob: 6e4e7b7234e8557b26f49a690c0887c1b3b6dc91 (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