/* $Id: toolkit.c,v 1.4 2002/07/21 09:26:02 in2 Exp $ */#include"bbs.h"unsignedStringHash(unsigned char*s){unsigned int v =0;while(*s) {
v = (v <<8) | (v >>24);
v ^=toupper(*s++);/* note this is case insensitive */}return(v *2654435769UL) >> (32- HASH_BITS);}