File: hash.h

package info (click to toggle)
xpaint 2.6.2-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,520 kB
  • ctags: 2,552
  • sloc: ansic: 26,927; makefile: 43; sh: 23
file content (8 lines) | stat: -rw-r--r-- 319 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
/* $Id: hash.h,v 1.2 1996/04/19 09:16:51 torsten Exp $ */

/* hash.c */
void *HashCreate(int (*cmp) (void *, void *), void (*free) (void *), int nelem);
void HashDestroy(void *t);
void *HashFind(void *t, int value, void *val);
int HashAdd(void *t, int value, void *val);
int HashRemove(void *t, int value, void *elem);