chiark
/
gitweb
/
~mdw
/
qmail
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
addrcheck: Don't spew userv error messages at SMTP clients.
[qmail]
/
cdbmake_hash.c
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
}