[BACK]Return to ohash.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/Attic/ohash.h between version 1.10 and 1.11

version 1.10, 2012/09/23 15:05:23 version 1.11, 2014/05/12 19:07:37
Line 24 
Line 24 
  * techniques, and more efficient in most cases.   * techniques, and more efficient in most cases.
  */   */
   
   /* user-visible data structure */
 struct ohash_info {  struct ohash_info {
         ptrdiff_t key_offset;          ptrdiff_t key_offset;
         void *data;     /* user data */          void *data;     /* user data */
         void *(*halloc)(size_t, void *);          void *(*calloc)(size_t, size_t, void *);
         void (*hfree)(void *, size_t, void *);          void (*free)(void *, void *);
         void *(*alloc)(size_t, void *);          void *(*alloc)(size_t, void *);
 };  };
   
 struct _ohash_record;  struct _ohash_record;
   
   /* private structure. It's there just so you can do a sizeof */
 struct ohash {  struct ohash {
         struct _ohash_record    *t;          struct _ohash_record    *t;
         struct ohash_info       info;          struct ohash_info       info;

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11