]> git.tdb.fi Git - libs/core.git/blob - source/glob.h
Further style and comment adjustments
[libs/core.git] / source / 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