# HG changeset patch # User hausers # Date 1330708520 -3600 # Node ID 40cad2a2fffc1df0a54403c0dd8a9d5a1f0d70c0 # Parent cafa35875bab5bd6e8fba58935d3d343b58396b3 remove function declared (implementation -> TODO) diff -r cafa35875bab -r 40cad2a2fffc PriorityQueue.c --- a/PriorityQueue.c Mon Feb 13 10:35:10 2012 -0800 +++ b/PriorityQueue.c Fri Mar 02 18:15:20 2012 +0100 @@ -123,6 +123,10 @@ } +void removePrioQ (int key, PrioQueueStruc *Q) { +//Sefan: TODO +} + void freePrioQ (PrioQueueStruc *Q) { VMS_int__free(Q->data); VMS_int__free(Q); diff -r cafa35875bab -r 40cad2a2fffc PriorityQueue.h --- a/PriorityQueue.h Mon Feb 13 10:35:10 2012 -0800 +++ b/PriorityQueue.h Fri Mar 02 18:15:20 2012 +0100 @@ -32,6 +32,7 @@ void* popPrioQ (PrioQueueStruc *Q); bool insertPrioQ (void *val, int key, PrioQueueStruc *Q); void freePrioQ (PrioQueueStruc *Q); +void removePrioQ (int key, PrioQueueStruc *Q); #ifdef DEBUG void printPrioQ (PrioQueueStruc *Q);