libhashkit/aes: simplify code
[awesomized/libmemcached] / src / libhashkit / algorithm.h
index a0d2fa196e94489d6315b9f495af8223390f6d23..78d79d6fe284c27b5a3170b9a7f0835ae330bdae 100644 (file)
@@ -1,6 +1,6 @@
 /*
     +--------------------------------------------------------------------+
-    | libmemcached - C/C++ Client Library for memcached                  |
+    | libmemcached-awesome - C/C++ Client Library for memcached          |
     +--------------------------------------------------------------------+
     | Redistribution and use in source and binary forms, with or without |
     | modification, are permitted under the terms of the BSD license.    |
@@ -9,12 +9,14 @@
     | the terms online at: https://opensource.org/licenses/BSD-3-Clause  |
     +--------------------------------------------------------------------+
     | Copyright (c) 2006-2014 Brian Aker   https://datadifferential.com/ |
-    | Copyright (c) 2020 Michael Wallner   <mike@php.net>                |
+    | Copyright (c) 2020-2021 Michael Wallner        https://awesome.co/ |
     +--------------------------------------------------------------------+
 */
 
 #pragma once
 
+extern "C" {
+
 uint32_t hashkit_one_at_a_time(const char *key, size_t key_length, void *context);
 
 uint32_t hashkit_fnv1_64(const char *key, size_t key_length, void *context);
@@ -36,3 +38,5 @@ uint32_t hashkit_murmur3(const char *key, size_t key_length, void *context);
 uint32_t hashkit_jenkins(const char *key, size_t key_length, void *context);
 
 uint32_t hashkit_md5(const char *key, size_t key_length, void *context);
+
+}