16 lines
219 B
C
16 lines
219 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2026-present, the Ladybird developers.
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <AK/Error.h>
|
||
|
|
|
||
|
|
namespace ImageDecoder {
|
||
|
|
|
||
|
|
[[nodiscard]] ErrorOr<void> apply_sandbox();
|
||
|
|
|
||
|
|
}
|