yunque9/web_xcode/Libraries/libil2cpp/include/utils/DirectoryUtils.h

14 lines
322 B
C
Raw Normal View History

2025-05-24 14:29:14 +08:00
#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);
}
}