mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-09-27 11:19:04 +00:00
16 lines
378 B
C++
16 lines
378 B
C++
|
|
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
||
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <span>
|
||
|
|
#include "common/common_types.h"
|
||
|
|
|
||
|
|
namespace Common::Compression {
|
||
|
|
|
||
|
|
[[nodiscard]] bool IsZBIC(std::span<const u8> src);
|
||
|
|
|
||
|
|
[[nodiscard]] int DecompressDataZBIC(std::span<u8> dst, std::span<const u8> src);
|
||
|
|
|
||
|
|
} // namespace Common::Compression
|