mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-11 17:35:27 +00:00
21 lines
406 B
C++
21 lines
406 B
C++
// Copyright 2019, Collabora, Ltd.
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
/*!
|
|
* @file
|
|
* @brief Hashing function.
|
|
* @author Jakob Bornecrantz <jakob@collabora.com>
|
|
* @ingroup aux_math
|
|
*/
|
|
|
|
#include <string>
|
|
#include "m_api.h"
|
|
|
|
|
|
extern "C" size_t
|
|
math_hash_string(const char *str_c, size_t length)
|
|
{
|
|
std::string str = std::string(str_c, length);
|
|
std::hash<std::string> str_hash;
|
|
return str_hash(str);
|
|
}
|