1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:57:45 +00:00

LibUnicode: Add Punycode::encode

This commit is contained in:
Simon Wanner 2023-06-14 15:24:30 +02:00 committed by Tim Flynn
parent 299d35aadc
commit cfd0a60863
3 changed files with 132 additions and 0 deletions

View file

@ -11,5 +11,7 @@
namespace Unicode::Punycode {
ErrorOr<String> decode(StringView);
ErrorOr<String> encode(StringView);
ErrorOr<String> encode(Utf32View);
}