2015-01-24 01:58:16 +01:00
|
|
|
/*
|
2021-12-08 13:15:45 -08:00
|
|
|
* xxHash - Fast Hash algorithm
|
2022-12-20 12:49:47 -05:00
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2020-03-26 15:19:05 -07:00
|
|
|
*
|
2021-12-08 13:15:45 -08:00
|
|
|
* You can contact the author at :
|
2022-12-14 06:58:35 -08:00
|
|
|
* - xxHash homepage: https://cyan4973.github.io/xxHash/
|
2021-12-08 13:15:45 -08:00
|
|
|
* - xxHash source repository : https://github.com/Cyan4973/xxHash
|
2021-12-07 21:14:52 -08:00
|
|
|
*
|
2021-12-08 13:15:45 -08:00
|
|
|
* This source code is licensed under both the BSD-style license (found in the
|
|
|
|
* LICENSE file in the root directory of this source tree) and the GPLv2 (found
|
|
|
|
* in the COPYING file in the root directory of this source tree).
|
|
|
|
* You may select, at your option, one of the above-listed licenses.
|
|
|
|
*/
|
|
|
|
|
2015-07-04 18:14:14 -08:00
|
|
|
|
2015-01-24 01:58:16 +01:00
|
|
|
|
2021-12-07 21:14:52 -08:00
|
|
|
/*
|
|
|
|
* xxhash.c instantiates functions defined in xxhash.h
|
2015-08-21 12:00:52 +01:00
|
|
|
*/
|
|
|
|
|
2021-12-07 21:14:52 -08:00
|
|
|
#define XXH_STATIC_LINKING_ONLY /* access advanced declarations */
|
|
|
|
#define XXH_IMPLEMENTATION /* access definitions */
|
2015-01-24 01:58:16 +01:00
|
|
|
|
2016-05-28 13:34:07 +02:00
|
|
|
#include "xxhash.h"
|