~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to plugin/innodb_memcached/daemon_memcached/daemon/hash.h

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

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