mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:17:36 +00:00
AK: Remove URLParser
This removes URLParser, because its two exposed functions, urlencode() and urldecode(), have been superseded by URL::percent_encode() and URL::percent_decode(). This is in preparation for the introduction of a new URL parser.
This commit is contained in:
parent
a603e69599
commit
0d41a7d39a
4 changed files with 0 additions and 108 deletions
|
@ -1,19 +0,0 @@
|
|||
/*
|
||||
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <AK/StringView.h>
|
||||
|
||||
namespace AK {
|
||||
|
||||
String urlencode(const StringView&, const StringView& exclude = {});
|
||||
String urldecode(const StringView&);
|
||||
|
||||
}
|
||||
|
||||
using AK::urldecode;
|
||||
using AK::urlencode;
|
Loading…
Add table
Add a link
Reference in a new issue