1
Fork 0
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:
Linus Groh 2021-01-31 18:35:11 +01:00 committed by Andreas Kling
parent 1320b9351e
commit 50e3b122c7
2 changed files with 4 additions and 4 deletions

View file

@ -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&);
}