1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:48:10 +00:00

LibUnicode: Add Punycode::decode

This commit is contained in:
Simon Wanner 2023-06-14 13:56:11 +02:00 committed by Tim Flynn
parent 37b5c05ec5
commit 299d35aadc
5 changed files with 230 additions and 0 deletions

View file

@ -0,0 +1,15 @@
/*
* Copyright (c) 2023, Simon Wanner <simon@skyrising.xyz>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/String.h>
namespace Unicode::Punycode {
ErrorOr<String> decode(StringView);
}