clang-format: no single-line case
[m6w6/libmemcached] / src / libhashkit / str_algorithm.cc
1 /*
2 +--------------------------------------------------------------------+
3 | libmemcached - C/C++ Client Library for memcached |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted under the terms of the BSD license. |
7 | You should have received a copy of the license in a bundled file |
8 | named LICENSE; in case you did not receive a copy you can review |
9 | the terms online at: https://opensource.org/licenses/BSD-3-Clause |
10 +--------------------------------------------------------------------+
11 | Copyright (c) 2006-2014 Brian Aker https://datadifferential.com/ |
12 | Copyright (c) 2020 Michael Wallner <mike@php.net> |
13 +--------------------------------------------------------------------+
14 */
15
16 #include "libhashkit/common.h"
17
18 const char *libhashkit_string_hash(hashkit_hash_algorithm_t type) {
19 switch (type) {
20 case HASHKIT_HASH_DEFAULT:
21 return "DEFAULT";
22 case HASHKIT_HASH_MD5:
23 return "MD5";
24 case HASHKIT_HASH_CRC:
25 return "CRC";
26 case HASHKIT_HASH_FNV1_64:
27 return "FNV1_64";
28 case HASHKIT_HASH_FNV1A_64:
29 return "FNV1A_64";
30 case HASHKIT_HASH_FNV1_32:
31 return "FNV1_32";
32 case HASHKIT_HASH_FNV1A_32:
33 return "FNV1A_32";
34 case HASHKIT_HASH_HSIEH:
35 return "HSIEH";
36 case HASHKIT_HASH_MURMUR:
37 return "MURMUR";
38 case HASHKIT_HASH_MURMUR3:
39 return "MURMUR3";
40 case HASHKIT_HASH_JENKINS:
41 return "JENKINS";
42 case HASHKIT_HASH_CUSTOM:
43 return "CUSTOM";
44 default:
45 case HASHKIT_HASH_MAX:
46 return "INVALID";
47 }
48 }