]> git.tdb.fi Git - libs/core.git/blobdiff - source/strings/glob.h
Move files around to prepare for assimilation into core
[libs/core.git] / source / strings / glob.h
diff --git a/source/strings/glob.h b/source/strings/glob.h
new file mode 100644 (file)
index 0000000..7942073
--- /dev/null
@@ -0,0 +1,20 @@
+/* $Id$
+
+This file is part of libmspstrings
+Copyright © 2007 Mikko Rasa
+Distributed under the LGPL
+*/
+
+#ifndef MSP_STRINGS_GLOB_H_
+#define MSP_STRINGS_GLOB_H_
+
+#include <string>
+
+namespace Msp {
+
+bool globmatch(const std::string &, const std::string &);
+bool globcasematch(const std::string &, const std::string &);
+
+} // namespace Msp
+
+#endif