From e881609a073a9a117dc159b398b7456c2e34454e Mon Sep 17 00:00:00 2001 From: Philip Kovacs Date: Fri, 8 Dec 2006 02:45:14 +0000 Subject: [PATCH] complete/correct source and authorship attribution git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@805 7f574dfc-610e-0410-a909-a81674777703 --- src/hash.c | 7 +++---- src/hash.h | 7 +++---- 2 files changed, 6 insertions(+), 8 deletions(-) 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