Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hash.h « src « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83ddfd38fbe8ac2faa27999b5127b5eee17784b8 (plain)
1
2
3
4
5
6
7
8
#ifndef _HASH_H_
#define _HASH_H_

// taken from burtleburtle.net/bob/hash/doobs.html
unsigned int quick_hash(register const char *k, register unsigned int length, register unsigned int initval);

#endif