nightmaremail

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

cdbmake_hash.c (144B)


      1 #include "cdbmake.h"
      2 
      3 uint32 cdbmake_hashadd(h,c)
      4 uint32 h;
      5 unsigned int c;
      6 {
      7   h += (h << 5);
      8   h ^= (uint32) (unsigned char) c;
      9   return h;
     10 }