1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-03 22:30:29 +02:00
Files
zstd/lib/common/xxhash.c

25 lines
767 B
C
Raw Normal View History

2015-01-24 01:58:16 +01:00
/*
2021-12-08 13:15:45 -08:00
* xxHash - Fast Hash algorithm
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
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-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
/*
* xxhash.c instantiates functions defined in xxhash.h
2015-08-21 12:00:52 +01: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"