diff options
Diffstat (limited to 'src/include/access/hash.h')
| -rw-r--r-- | src/include/access/hash.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/access/hash.h b/src/include/access/hash.h index e059617571..324c5772f2 100644 --- a/src/include/access/hash.h +++ b/src/include/access/hash.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: hash.h,v 1.14 1998/03/30 17:24:40 momjian Exp $ + * $Id: hash.h,v 1.15 1998/04/07 18:12:01 momjian Exp $ * * NOTES * modeled after Margo Seltzer's hash implementation for unix. @@ -272,6 +272,10 @@ extern uint32 hashfloat4(float32 keyp); extern uint32 hashfloat8(float64 keyp); extern uint32 hashoid(Oid key); extern uint32 hashchar(char key); +extern uint32 hashchar2(uint16 intkey); +extern uint32 hashchar4(uint32 intkey); +extern uint32 hashchar8(char *key); +extern uint32 hashchar16(char *key); extern uint32 hashtext(struct varlena * key); extern uint32 hashname(NameData *n); |
