]> git.tdb.fi Git - libs/core.git/blob - source/strings/glob.h
7942073b19db0622ca68639bc4d37e61346f56ef
[libs/core.git] / source / strings / glob.h
1 /* $Id$
2
3 This file is part of libmspstrings
4 Copyright © 2007 Mikko Rasa
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_STRINGS_GLOB_H_
9 #define MSP_STRINGS_GLOB_H_
10
11 #include <string>
12
13 namespace Msp {
14
15 bool globmatch(const std::string &, const std::string &);
16 bool globcasematch(const std::string &, const std::string &);
17
18 } // namespace Msp
19
20 #endif