Subversion Repositories HelenOS-historic

Rev

Rev 793 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 793 Rev 1702
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup genericadt
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 */
-
 
34
 
29
#ifndef __HASH_TABLE_H__
35
#ifndef __HASH_TABLE_H__
30
#define __HASH_TABLE_H__
36
#define __HASH_TABLE_H__
31
 
37
 
32
#include <adt/list.h>
38
#include <adt/list.h>
33
#include <arch/types.h>
39
#include <arch/types.h>
Line 72... Line 78...
72
extern void hash_table_insert(hash_table_t *h, __native key[], link_t *item);
78
extern void hash_table_insert(hash_table_t *h, __native key[], link_t *item);
73
extern link_t *hash_table_find(hash_table_t *h, __native key[]);
79
extern link_t *hash_table_find(hash_table_t *h, __native key[]);
74
extern void hash_table_remove(hash_table_t *h, __native key[], count_t keys);
80
extern void hash_table_remove(hash_table_t *h, __native key[], count_t keys);
75
 
81
 
76
#endif
82
#endif
-
 
83
 
-
 
84
 /** @}
-
 
85
 */
-
 
86