File: hash.h

package info (click to toggle)
uml-utilities 20040406-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 704 kB
  • ctags: 398
  • sloc: ansic: 3,169; perl: 929; makefile: 203; exp: 129; sh: 92
file content (15 lines) | stat: -rw-r--r-- 370 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Copyright 2002 Yon Uriarte and Jeff Dike
 * Licensed under the GPL
 */

#ifndef __HASH_H__
#define __HASH_H__

extern void *find_in_hash(char *dst);
extern void insert_into_hash(char *src, void *port);
extern void delete_hash(char *dst);
extern void print_hash(char *(*port_id)(void *));
extern void update_entry_time(char *src);
extern void hash_init(void);

#endif