mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-10 02:01:03 +00:00
16 lines
244 B
C
16 lines
244 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2022-2023, the SerenityOS developers.
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <AK/Forward.h>
|
||
|
|
|
||
|
|
namespace Web::Infra {
|
||
|
|
|
||
|
|
[[nodiscard]] ErrorOr<ByteBuffer> decode_forgiving_base64(StringView);
|
||
|
|
|
||
|
|
}
|