Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

mishmash.hpp 301B

1234567891011121314
  1. // mishmash.hpp (c) 20190407 _M
  2. //
  3. #pragma once
  4. #include <string>
  5. #include <vector>
  6. namespace codedweller {
  7. uint32_t hash(const unsigned char* buffer, size_t length) noexcept;
  8. uint32_t hash(const std::string &s) noexcept;
  9. uint32_t hash(const std::vector<unsigned char>& v) noexcept;
  10. }