Codebase list bglibs / debian/2.04+dfsg-2 cdb / cdbhash.c
debian/2.04+dfsg-2

Tree @debian/2.04+dfsg-2 (Download .tar.gz)

cdbhash.c @debian/2.04+dfsg-2raw · history · blame

/* Public domain. */

#include "cdb.h"

uint32 cdb_hashadd(uint32 h,unsigned char c)
{
  h += (h << 5);
  return h ^ c;
}

uint32 cdb_hash(const char *buf,unsigned int len)
{
  uint32 h;

  h = CDB_HASHSTART;
  while (len) {
    h = cdb_hashadd(h,*buf++);
    --len;
  }
  return h;
}