21 lines
330 B
C
21 lines
330 B
C
/*
|
|
pointer hash table
|
|
optimized for storing info about particular values
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
#include <limits.h>
|
|
|
|
#include "dtypes.h"
|
|
#include "ptrhash.h"
|
|
#include "hashing.h"
|
|
|
|
#define OP_EQ(x,y) ((x)==(y))
|
|
|
|
#include "htable.inc"
|
|
|
|
HTIMPL(ptrhash, inthash, OP_EQ)
|