You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
389 B
23 lines
389 B
#ifndef BGHASH_H
|
|
#define BGHASH_H
|
|
|
|
/*
|
|
* TQString -> int hash. From Qt's TQGDict::hashKeyString().
|
|
*/
|
|
|
|
static int TQHash(TQString key)
|
|
{
|
|
int g, h = 0;
|
|
const TQChar *p = key.unicode();
|
|
for (unsigned i=0; i < key.length(); i++) {
|
|
h = (h << 4) + p[i].cell();
|
|
if ((g = (h & 0xf0000000)))
|
|
h ^= (g >> 24);
|
|
h &= ~g;
|
|
}
|
|
return h;
|
|
}
|
|
|
|
#endif
|
|
|