]> git.tdb.fi Git - libs/core.git/blob - source/glob.h
Fix compile erorrs on 64-bit systems
[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 #ifndef MSP_STRINGS_GLOB_H_
8 #define MSP_STRINGS_GLOB_H_
9
10 #include <string>
11
12 namespace Msp {
13
14 bool globmatch(const std::string &, const std::string &);
15 bool globcasematch(const std::string &, const std::string &);
16
17 } // namespace Msp
18
19 #endif