mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
This is a workaround for the fact that AK::URLParser can't call into LibUnicode directly.
16 lines
240 B
C++
16 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&);
|
|
|
|
}
|