/* * Copyright (c) 2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace AK { String urlencode(const StringView&, const StringView& exclude = {}); String urldecode(const StringView&); } using AK::urldecode; using AK::urlencode;