1*3117ece4Schristos /* 2*3117ece4Schristos * xxHash - Extremely Fast Hash algorithm 3*3117ece4Schristos * Copyright (c) Yann Collet - Meta Platforms, Inc 4*3117ece4Schristos * 5*3117ece4Schristos * This source code is licensed under both the BSD-style license (found in the 6*3117ece4Schristos * LICENSE file in the root directory of this source tree) and the GPLv2 (found 7*3117ece4Schristos * in the COPYING file in the root directory of this source tree). 8*3117ece4Schristos * You may select, at your option, one of the above-listed licenses. 9*3117ece4Schristos */ 10*3117ece4Schristos 11*3117ece4Schristos /* 12*3117ece4Schristos * xxhash.c instantiates functions defined in xxhash.h 13*3117ece4Schristos */ 14*3117ece4Schristos 15*3117ece4Schristos #define XXH_STATIC_LINKING_ONLY /* access advanced declarations */ 16*3117ece4Schristos #define XXH_IMPLEMENTATION /* access definitions */ 17*3117ece4Schristos 18*3117ece4Schristos #include "xxhash.h" 19