1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 21:49:07 +00:00

complete/correct source and authorship attribution

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@805 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Philip Kovacs 2006-12-08 02:45:14 +00:00
parent de84fcac2a
commit e881609a07
2 changed files with 6 additions and 8 deletions

View File

@ -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

View File

@ -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