Badminton-Scoreboard/Libraries/libil2cpp/include/utils/DirectoryUtils.h
2023-10-08 10:24:48 +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);
}
}