]> git.tdb.fi Git - libs/core.git/blob - source/strings/glob.h
Add move semantics to Variant
[libs/core.git] / source / strings / glob.h
1 #ifndef MSP_STRINGS_GLOB_H_
2 #define MSP_STRINGS_GLOB_H_
3
4 #include <string>
5 #include <msp/core/mspcore_api.h>
6
7 namespace Msp {
8
9 MSPCORE_API bool globmatch(const std::string &, const std::string &);
10 MSPCORE_API bool globcasematch(const std::string &, const std::string &);
11
12 } // namespace Msp
13
14 #endif