You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314 |
- // mishmash.hpp (c) 20190407 _M
- //
-
- #pragma once
- #include <string>
- #include <vector>
-
- namespace codedweller {
-
- uint32_t hash(const unsigned char* buffer, size_t length) noexcept;
- uint32_t hash(const std::string &s) noexcept;
- uint32_t hash(const std::vector<unsigned char>& v) noexcept;
-
- }
|