#include <hash.h>
List of all members.
Detailed Description
Definition at line 1116 of file hash.h.
Member Function Documentation
Definition at line 1118 of file hash.h.
{
const int MulBy = 16;
int HashCd = 0;
while (*p) { HashCd = (MulBy * HashCd) + *p++; HashCd &= 0x0FFFFFFF; }
return HashCd; }
Definition at line 1123 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: