summaryrefslogtreecommitdiffstats
path: root/include/eheap.h
blob: 323fa30c75cf9e56e40c16cf8da244762970b5fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef EHEAP_H
#define EHEAP_H

#include <limits.h>
#include "heap.h"

int earlier_event(struct heap_node* _a, struct heap_node* _b);

struct heap* heapify_events(struct st_event_record *ev, unsigned int count);


#endif