1 /* 2 * sort.hh - headers for C++ sort functions 3 * Copyright (C) 2019-2020 Yann Collet 4 * GPL v2 License 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation; either version 2 of the License, or 9 * (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License along 17 * with this program; if not, write to the Free Software Foundation, Inc., 18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 19 * 20 * You can contact the author at : 21 * - xxHash homepage : https://www.xxhash.com 22 * - xxHash source repository : https://github.com/Cyan4973/xxHash 23 */ 24 25 #ifdef __cplusplus 26 extern "C" { 27 #endif 28 29 #include <stddef.h> // size 30 #include <stdint.h> // uint64_t 31 #define XXH_STATIC_LINKING_ONLY // XXH128_hash_t 32 #include "xxhash.h" 33 34 void sort64(uint64_t* table, size_t size); 35 36 void sort128(XXH128_hash_t* table, size_t size); 37 38 #ifdef __cplusplus 39 } // extern C 40 #endif 41