mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 07:47:34 +00:00
AK: Add optional parameter for excluding chars to urlencode()
This commit is contained in:
parent
1320b9351e
commit
50e3b122c7
2 changed files with 4 additions and 4 deletions
|
@ -26,11 +26,11 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <AK/Forward.h>
|
||||
#include <AK/StringView.h>
|
||||
|
||||
namespace AK {
|
||||
|
||||
String urlencode(const StringView&);
|
||||
String urlencode(const StringView&, const StringView& exclude = {});
|
||||
String urldecode(const StringView&);
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue