mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 16:25:08 +00:00
15 lines
230 B
C++
15 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);
|
|
|
|
}
|