changeset 9:40cad2a2fffc MC_shared

remove function declared (implementation -> TODO)
author hausers
date Fri, 02 Mar 2012 18:15:20 +0100
parents cafa35875bab
children ee94893d2843
files PriorityQueue.c PriorityQueue.h
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line diff
     1.1 --- a/PriorityQueue.c	Mon Feb 13 10:35:10 2012 -0800
     1.2 +++ b/PriorityQueue.c	Fri Mar 02 18:15:20 2012 +0100
     1.3 @@ -123,6 +123,10 @@
     1.4  
     1.5  }
     1.6  
     1.7 +void removePrioQ (int key, PrioQueueStruc *Q) {
     1.8 +//Sefan: TODO
     1.9 +}
    1.10 +
    1.11  void freePrioQ (PrioQueueStruc *Q) {
    1.12  	VMS_int__free(Q->data);
    1.13  	VMS_int__free(Q);
     2.1 --- a/PriorityQueue.h	Mon Feb 13 10:35:10 2012 -0800
     2.2 +++ b/PriorityQueue.h	Fri Mar 02 18:15:20 2012 +0100
     2.3 @@ -32,6 +32,7 @@
     2.4  void* popPrioQ (PrioQueueStruc *Q);
     2.5  bool insertPrioQ (void *val, int key, PrioQueueStruc *Q);
     2.6  void freePrioQ (PrioQueueStruc *Q);
     2.7 +void removePrioQ (int key, PrioQueueStruc *Q);
     2.8  
     2.9  #ifdef DEBUG
    2.10  void printPrioQ (PrioQueueStruc *Q);