comparison src/hash.h @ 440:8de8e3f6228a r21-2-28

Import from CVS: tag r21-2-28
author cvs
date Mon, 13 Aug 2007 11:33:38 +0200
parents 3ecd8885ac67
children abe6d1db359e
comparison
equal deleted inserted replaced
439:357dd071b03c 440:8de8e3f6228a
15 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 15 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 Boston, MA 02111-1307, USA. */ 16 Boston, MA 02111-1307, USA. */
17 17
18 /* Synched up with: Not in FSF. */ 18 /* Synched up with: Not in FSF. */
19 19
20 #ifndef _HASH_H_ 20 #ifndef INCLUDED_hash_h_
21 #define _HASH_H_ 21 #define INCLUDED_hash_h_
22 22
23 typedef struct 23 typedef struct
24 { 24 {
25 CONST void *key; 25 CONST void *key;
26 void *contents; 26 void *contents;
76 76
77 /* Delete all objects from HASH-TABLE satisfying PREDICATE */ 77 /* Delete all objects from HASH-TABLE satisfying PREDICATE */
78 void map_remhash (remhash_predicate predicate, 78 void map_remhash (remhash_predicate predicate,
79 struct hash_table *hash_table, void *arg); 79 struct hash_table *hash_table, void *arg);
80 80
81 #endif /* _HASH_H_ */ 81 #endif /* INCLUDED_hash_h_ */