comparison PriorityQueue.h @ 5:09e51191078a

updated for VMS name chgs from VMS__malloc to VMS_int__malloc
author Me@portablequad
date Sun, 12 Feb 2012 01:45:04 -0800
parents b0195491f167
children 40cad2a2fffc
comparison
equal deleted inserted replaced
1:815d8928003f 3:4c461af569da
25 int maxSize; 25 int maxSize;
26 26
27 heapNode *data; 27 heapNode *data;
28 }; 28 };
29 29
30 PrioQueueStruc* makeVMSPrioQ(); 30 PrioQueueStruc* makePrioQ();
31 void* getFirstPrioQ (PrioQueueStruc *Q); 31 void* getFirstPrioQ (PrioQueueStruc *Q);
32 void* popPrioQ (PrioQueueStruc *Q); 32 void* popPrioQ (PrioQueueStruc *Q);
33 bool insertPrioQ (void *val, int key, PrioQueueStruc *Q); 33 bool insertPrioQ (void *val, int key, PrioQueueStruc *Q);
34 void freePrioQ (PrioQueueStruc *Q); 34 void freePrioQ (PrioQueueStruc *Q);
35 35