1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-03 17:37:18 +00:00
OpenMW/components/files/hash.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
262 B
C++
Raw Normal View History

#ifndef COMPONENTS_FILES_HASH_H
#define COMPONENTS_FILES_HASH_H
2021-11-15 16:40:22 +00:00
#include <array>
#include <cstdint>
#include <iosfwd>
#include <string_view>
namespace Files
{
std::array<std::uint64_t, 2> getHash(std::string_view fileName, std::istream& stream);
}
#endif