mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-07 16:27:12 +00:00
16 lines
230 B
C++
16 lines
230 B
C++
/*
|
|
* Copyright (c) 2023, Cameron Youell <cameronyouell@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Forward.h>
|
|
|
|
namespace PublicSuffix {
|
|
|
|
ErrorOr<String> absolute_url(StringView url);
|
|
|
|
}
|