LearnWithTouch/App/LearnWithTouch_ios/Libraries/libil2cpp/include/utils/DirectoryUtils.h
2019-07-01 14:33:21 +02: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);
}
}