22 lines
471 B
C++
22 lines
471 B
C++
#pragma once
|
|
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
#include <aws/crt/Exports.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Crt
|
|
{
|
|
/**
|
|
* C-string hash function
|
|
* @param str string to hash
|
|
* @return hash code of the string
|
|
*/
|
|
size_t AWS_CRT_CPP_API HashString(const char *str) noexcept;
|
|
} // namespace Crt
|
|
} // namespace Aws
|