~yeban/libmemcached/todo-host.c

« back to all changes in this revision

Viewing changes to libhashkit/algorithm.c

  • Committer: Brian Aker
  • Date: 2011-02-15 17:26:17 UTC
  • Revision ID: brian@tangent.org-20110215172617-gr7j6dibksxdupwj
Merge in bug fix for 677609

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
}
46
46
#endif
47
47
 
 
48
#ifdef HAVE_MURMUR_HASH
48
49
uint32_t libhashkit_murmur(const char *key, size_t key_length)
49
50
{
50
51
  return hashkit_murmur(key, key_length, NULL);
51
52
}
 
53
#endif
52
54
 
53
55
uint32_t libhashkit_jenkins(const char *key, size_t key_length)
54
56
{