summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Infra/Base64.h
blob: 381fbebb75d3a7ad4c680e6e27fbf89e38c80240 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * 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);

}