blob: 150a5f86b2f47c64cf21e9614211067aefc3b2d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef POKEREVO_OSALLOC_H
#define POKEREVO_OSALLOC_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct Cell Cell;
struct Cell {
Cell* prev;
Cell* next;
long size;
};
Cell *DLInsert(Cell *original, Cell *inserted);
#ifdef __cplusplus
}
#endif
#endif //POKEREVO_OSALLOC_H
|