diff options
Diffstat (limited to 'sqmail-4.3.07/src/include/prioq.h')
-rw-r--r-- | sqmail-4.3.07/src/include/prioq.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sqmail-4.3.07/src/include/prioq.h b/sqmail-4.3.07/src/include/prioq.h new file mode 100644 index 0000000..3547b1c --- /dev/null +++ b/sqmail-4.3.07/src/include/prioq.h @@ -0,0 +1,15 @@ +#ifndef PRIOQ_H +#define PRIOQ_H + +#include "datetime.h" +#include "genalloc.h" + +struct prioq_elt { datetime_sec dt; unsigned long id; } ; + +GEN_ALLOC_typedef(prioq,struct prioq_elt,p,len,a) + +int prioq_insert(); +int prioq_min(); +void prioq_delmin(); + +#endif |