1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 16:25:08 +00:00
serenity/Userland/Libraries/LibPublicSuffix/URL.h
2023-08-17 15:30:23 +01:00

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