nightmaremail

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

prioq.h (276B)


      1 #ifndef PRIOQ_H
      2 #define PRIOQ_H
      3 
      4 #include "datetime.h"
      5 #include "gen_alloc.h"
      6 
      7 struct prioq_elt { datetime_sec dt; unsigned long id; } ;
      8 
      9 GEN_ALLOC_typedef(prioq,struct prioq_elt,p,len,a)
     10 
     11 extern int prioq_insert();
     12 extern int prioq_min();
     13 extern void prioq_delmin();
     14 
     15 #endif