comparison PriorityQueue.c @ 9:40cad2a2fffc

remove function declared (implementation -> TODO)
author hausers
date Fri, 02 Mar 2012 18:15:20 +0100
parents 09e51191078a
children ee94893d2843
comparison
equal deleted inserted replaced
4:e791a39347d8 5:ae5de7f477d6
121 for (i= 1; i<Q->size; i++) printf(",%s",(char *)Q->data[i].val); 121 for (i= 1; i<Q->size; i++) printf(",%s",(char *)Q->data[i].val);
122 printf("} ... "); 122 printf("} ... ");
123 123
124 } 124 }
125 125
126 void removePrioQ (int key, PrioQueueStruc *Q) {
127 //Sefan: TODO
128 }
129
126 void freePrioQ (PrioQueueStruc *Q) { 130 void freePrioQ (PrioQueueStruc *Q) {
127 VMS_int__free(Q->data); 131 VMS_int__free(Q->data);
128 VMS_int__free(Q); 132 VMS_int__free(Q);
129 } 133 }