home *** CD-ROM | disk | FTP | other *** search
/ vsiftp.vmssoftware.com / VSIPUBLIC@vsiftp.vmssoftware.com.tar / FREEWARE / FREEWARE40.ZIP / xpaint-247 / hash.h < prev    next >
Text File  |  1996-06-25  |  319b  |  9 lines

  1. /* $Id: hash.h,v 1.2 1996/04/19 09:16:51 torsten Exp $ */
  2.  
  3. /* hash.c */
  4. void *HashCreate(int (*cmp) (void *, void *), void (*free) (void *), int nelem);
  5. void HashDestroy(void *t);
  6. void *HashFind(void *t, int value, void *val);
  7. int HashAdd(void *t, int value, void *val);
  8. int HashRemove(void *t, int value, void *elem);
  9.