mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
18 lines
289 B
C++
18 lines
289 B
C++
/*
|
|
* 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);
|
|
ErrorOr<String> encode(StringView);
|
|
ErrorOr<String> encode(Utf32View);
|
|
|
|
}
|