OSDN Git Service

(none)
[hos/hos-v4a.git] / aplfw / library / container / hashtable / hashtable_delete.c
1 /** 
2  *  Hyper Operating System  Application Framework
3  *
4  * @file  hashtable_get.c
5  * @brief %jp{ハッシュテーブルクラス}%en{hash table class}
6  *
7  * Copyright (C) 2006-2009 by Project HOS
8  * http://sourceforge.jp/projects/hos/
9  */
10
11
12 #include <stdio.h>
13 #include <string.h>
14 #include "hashtable_local.h"
15
16
17 /** %jp{削除}%en{Delete} */
18 void HashTable_Delete(C_HASHTABLE *self)
19 {
20         C_MEMHEAP       *pMemHeap;
21         
22         pMemHeap = self->pMemHeap;
23
24         /* デストラクタ */
25         HashTable_Destructor(self);
26         
27         /* メモリ開放 */
28         MemHeap_Free(pMemHeap, self);
29 }
30
31
32 /* end of file */