diff --git a/src/hash.c b/src/hash.c index e404e11c..96416525 100644 --- a/src/hash.c +++ b/src/hash.c @@ -1,3 +1,4 @@ +/* $Id$ */ /* ------------------------------------------------------ * Open-addressed hash using double hash probing * @@ -7,11 +8,9 @@ * requires: 1) m must be a power of two * 2) h2(k) must return an odd number * - * Besed on code published in _Mastering Algorithms in C_ - * by Kyle Loudon (O'Reilly 1999). + * Besed on code published in _Mastering Algorithms With C_ + * by Kyle Loudon (O'Reilly & Associates, 1999), ISBN 1565924533. * Modified by Philip Kovacs (kovacsp3@comcast.net) - * - * $Id$ * ------------------------------------------------------ */ #ifdef HASH_DEBUG diff --git a/src/hash.h b/src/hash.h index 55e78eac..09be60a2 100644 --- a/src/hash.h +++ b/src/hash.h @@ -1,3 +1,4 @@ +/* $Id$ */ /* ------------------------------------------------------ * Open-addressed hash using double hash probing * @@ -7,11 +8,9 @@ * requires: 1) m must be a power of two * 2) h2(k) must return an odd number * - * Besed on code published in _Mastering Algorithms in C_ - * by Kyle Loudon (O'Reilly 1999). + * Besed on code published in _Mastering Algorithms With C_ + * by Kyle Loudon (O'Reilly & Associates, 1999), ISBN 1565924533. * Modified by Philip Kovacs (kovacsp3@comcast.net) - * - * $Id$ * ------------------------------------------------------ */ #ifndef HASH_H