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

hash.h « vowpalwabbit - github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cffe56bf45dfa694e2e3209bf9c9ff557213de3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
Copyright (c) by respective owners including Yahoo!, Microsoft, and
individual contributors. All rights reserved.  Released under a BSD
license as described in the file LICENSE.
 */

#ifndef HASH_H
#define HASH_H

const uint32_t hash_base = 0;
uint32_t uniform_hash( const void *key, size_t length, uint32_t initval);

#endif