]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
contrib/murmurhash3: machine readable license
authorPetr Špaček <petr.spacek@nic.cz>
Fri, 14 Feb 2020 08:08:02 +0000 (09:08 +0100)
committerVladimír Čunát <vladimir.cunat@nic.cz>
Tue, 25 Feb 2020 08:26:36 +0000 (09:26 +0100)
contrib/murmurhash3/murmurhash3.c
contrib/murmurhash3/murmurhash3.h

index ac28f6993816fa14ae5034a15967724d6b76c933..995c2366e3114312f37931aa63a337b68cfe735e 100644 (file)
@@ -1,5 +1,8 @@
 /* This is MurmurHash3. The original C++ code was placed in the public domain
- * by its author, Austin Appleby. */
+ * by its author, Austin Appleby.
+ *
+ * SPDX-License-Identifier: CC0-1.0
+ * Source: https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp */
 
 #include "murmurhash3.h"
 #include "string.h"
index b4507b3ae197c82bd71c91ac5069aeb2624cde08..d849961eb2080cbbb4ab49e688340c70ecfbaa98 100644 (file)
@@ -1,3 +1,6 @@
+/* SPDX-License-Identifier: CC0-1.0
+ * Source: https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp */
+
 #pragma once
 
 #include <stdlib.h>