diff options
| author | Dan Engelbrecht <[email protected]> | 2025-11-24 10:06:52 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-11-24 10:06:52 +0100 |
| commit | 6dcdddbf733b0aa323ffb7ecbe56c04b15c6c16a (patch) | |
| tree | 78685156e98214e4e1125501a8c09cac37bc45f4 /src/zenutil/include | |
| parent | changelog (#661) (diff) | |
| download | zen-6dcdddbf733b0aa323ffb7ecbe56c04b15c6c16a.tar.xz zen-6dcdddbf733b0aa323ffb7ecbe56c04b15c6c16a.zip | |
update state when wildcard (#657)
* add --append option and improve state handling when using downloads for `zen builds download`
Diffstat (limited to 'src/zenutil/include')
| -rw-r--r-- | src/zenutil/include/zenutil/wildcard.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/zenutil/include/zenutil/wildcard.h b/src/zenutil/include/zenutil/wildcard.h index 9f402e100..db2d4bda0 100644 --- a/src/zenutil/include/zenutil/wildcard.h +++ b/src/zenutil/include/zenutil/wildcard.h @@ -8,6 +8,11 @@ namespace zen { bool MatchWildcard(std::string_view Wildcard, std::string_view String, bool CaseSensitive); +bool IncludePath(std::span<const std::string> IncludeWildcards, + std::span<const std::string> ExcludeWildcards, + const std::string& Path, + bool CaseSensitive); + void wildcard_forcelink(); // internal } // namespace zen |