mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-04 23:30:59 +00:00
17 lines
240 B
C
17 lines
240 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2023, Simon Wanner <simon@skyrising.xyz>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <AK/String.h>
|
||
|
|
#include <AK/URL.h>
|
||
|
|
|
||
|
|
namespace Unicode {
|
||
|
|
|
||
|
|
ErrorOr<URL> create_unicode_url(String const&);
|
||
|
|
|
||
|
|
}
|