2015-05-20 14:47:36 +10:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2015-05-20 14:47:36 +10:00
|
|
|
*
|
|
|
|
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <array>
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft::hash::murmur {
|
2017-01-05 15:06:49 +11:00
|
|
|
template <typename T>
|
|
|
|
T
|
|
|
|
tail (const uint8_t *restrict data, size_t len);
|
2015-05-20 14:47:36 +10:00
|
|
|
|
2017-01-05 15:06:49 +11:00
|
|
|
template <typename T>
|
|
|
|
std::array<T,16/sizeof(T)>
|
|
|
|
tail_array (const uint8_t *restrict data, size_t len);
|
|
|
|
}
|