Files
RedHotRoast-ios/HybridCLRData/LocalIl2CppData-OSXEditor/il2cpp/libil2cpp/utils/DirectoryUtils.h
T
2026-07-17 14:03:00 +08:00

14 lines
322 B
C++

#pragma once
#include <string>
namespace il2cpp
{
namespace utils
{
bool Match(const std::string name, size_t nameIndex, const std::string& pattern, const size_t patternIndex);
bool Match(const std::string name, const std::string& pattern);
std::string CollapseAdjacentStars(const std::string& pattern);
}
}