#include <hash.h>
List of all members.
Detailed Description
Definition at line 1119 of file hash.h.
Member Function Documentation
Definition at line 1121 of file hash.h.
{
const int MulBy = 16;
int HashCd = 0;
while (*p) { HashCd = (MulBy * HashCd) + *p++; HashCd &= 0x0FFFFFFF; }
return HashCd; }
Definition at line 1126 of file hash.h.
{
const int MulBy = 16;
int HashCd = 0;
while (*p) { HashCd = (MulBy * HashCd) ^ *p++; HashCd &= 0x0FFFFFFF; }
return HashCd; }
The documentation for this class was generated from the following file: