/* * Copyright (c) 2022-2023, Linus Groh * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace Web::Fetch::Infrastructure { Optional extract_mime_type(HTTP::HeaderList const&); StringView legacy_extract_an_encoding(Optional const& mime_type, StringView fallback_encoding); }