#ifndef EXIV2_UTILS_HPP #define EXIV2_UTILS_HPP #include #include namespace Exiv2::Internal { constexpr bool startsWith(std::string_view s, std::string_view start) { return s.find(start) == 0; } /// @brief Returns the uppercase version of \b str std::string upper(const std::string& str); /// @brief Returns the lowercase version of \b str std::string lower(const std::string& str); } // namespace Exiv2::Internal #endif // EXIV2_UTILS_HPP