~yolanda.robla/ubuntu/trusty/memcached/add_distribution

« back to all changes in this revision

Viewing changes to hash.h

  • Committer: Bazaar Package Importer
  • Author(s): David Martínez Moreno
  • Date: 2009-08-01 23:26:45 UTC
  • mto: (3.3.1 squeeze) (1.4.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20090801232645-g57xdaf3zal53qcl
Tags: upstream-1.4.0
Import upstream version 1.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef HASH_H
 
2
#define    HASH_H
 
3
 
 
4
#ifdef    __cplusplus
 
5
extern "C" {
 
6
#endif
 
7
 
 
8
uint32_t hash(const void *key, size_t length, const uint32_t initval);
 
9
 
 
10
#ifdef    __cplusplus
 
11
}
 
12
#endif
 
13
 
 
14
#endif    /* HASH_H */
 
15