#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Go to the source code of this file.
Classes | |
struct | _pitem |
Typedefs | |
typedef struct _pqueue * | pqueue |
typedef struct _pitem | pitem |
typedef struct _pitem * | piterator |
Functions | |
pitem * | pitem_new (unsigned char *prio64be, void *data) |
void | pitem_free (pitem *item) |
pqueue | pqueue_new (void) |
void | pqueue_free (pqueue pq) |
pitem * | pqueue_insert (pqueue pq, pitem *item) |
pitem * | pqueue_peek (pqueue pq) |
pitem * | pqueue_pop (pqueue pq) |
pitem * | pqueue_find (pqueue pq, unsigned char *prio64be) |
pitem * | pqueue_iterator (pqueue pq) |
pitem * | pqueue_next (piterator *iter) |
void | pqueue_print (pqueue pq) |
int | pqueue_size (pqueue pq) |
int pqueue_size | ( | pqueue | pq | ) |