ladybird/Userland/Libraries/LibUnicode/URL.h
Simon Wanner 58f08107b0 AK+LibUnicode: Add Unicode::create_unicode_url
This is a workaround for the fact that AK::URLParser can't call into
LibUnicode directly.
2023-12-10 08:04:58 -05:00

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&);
}