Changeset 501 in kBuild for vendor/gnumake/current/hash.h
- Timestamp:
- Sep 15, 2006 2:30:32 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/gnumake/current/hash.h
r54 r501 1 1 /* hash.h -- decls for hash table 2 3 4 5 6 7 8 9 10 11 12 13 14 15 You should have received a copy of the GNU General Public License 16 along with this program; if not, write to the Free Software17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.*/2 Copyright (C) 1995, 1999, 2002 Free Software Foundation, Inc. 3 Written by Greg McGary <[email protected]> <[email protected]> 4 5 This program is free software; you can redistribute it and/or modify 6 it under the terms of the GNU General Public License as published by 7 the Free Software Foundation; either version 2, or (at your option) 8 any later version. 9 10 This program is distributed in the hope that it will be useful, 11 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 GNU General Public License for more details. 14 15 You should have received a copy of the GNU General Public License along with 16 this program; see the file COPYING. If not, write to the Free Software 17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ 18 18 19 19 #ifndef _hash_h_ … … 64 64 void **hash_find_slot __P((struct hash_table *ht, void const *key)); 65 65 void *hash_find_item __P((struct hash_table *ht, void const *key)); 66 void *hash_insert __P((struct hash_table *ht, void *item));67 void *hash_insert_at __P((struct hash_table *ht, void *item, void const *slot));66 void *hash_insert __P((struct hash_table *ht, const void *item)); 67 void *hash_insert_at __P((struct hash_table *ht, const void *item, void const *slot)); 68 68 void *hash_delete __P((struct hash_table *ht, void const *item)); 69 69 void *hash_delete_at __P((struct hash_table *ht, void const *slot));
Note:
See TracChangeset
for help on using the changeset viewer.