mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-06 00:00:58 +00:00
16 lines
218 B
C
16 lines
218 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);
|
||
|
|
|
||
|
|
}
|