]> icculus.org git repositories - divverent/netradiant.git/blob - libs/filematch.h
fix spotScale implementation
[divverent/netradiant.git] / libs / filematch.h
1 #if !defined(INCLUDED_FILEMATCH_H)
2 #define INCLUDED_FILEMATCH_H
3
4 #ifdef __cplusplus
5 extern "C"
6 {
7 #endif
8
9 int matchpattern(const char *in, const char *pattern, int caseinsensitive);
10 int matchpattern_with_separator(const char *in, const char *pattern, int caseinsensitive, const char *separators, int wildcard_least_one);
11
12 #ifdef __cplusplus
13 }
14 #endif
15
16 #endif