mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-01-09 15:22:04 +00:00
2b4ec88dae
This follows discussions from #3413. Followup commits add clang-format file, script and blame ignore lists.
10 lines
235 B
C++
10 lines
235 B
C++
// SPDX-License-Identifier: MIT
|
|
#pragma once
|
|
|
|
#include <FEXCore/fextl/string.h>
|
|
|
|
namespace FEX::FormatCheck {
|
|
bool IsSquashFS(const fextl::string& Filename);
|
|
bool IsEroFS(const fextl::string& Filename);
|
|
} // namespace FEX::FormatCheck
|