worldspawn/libs/filematch/filematch.h

17 lines
363 B
C
Raw Normal View History

2021-06-02 01:49:27 -07:00
#if !defined( INCLUDED_FILEMATCH_H )
#define INCLUDED_FILEMATCH_H
#ifdef __cplusplus
extern "C"
{
#endif
int matchpattern( const char *in, const char *pattern, int caseinsensitive );
int matchpattern_with_separator( const char *in, const char *pattern, int caseinsensitive, const char *separators, int wildcard_least_one );
#ifdef __cplusplus
}
#endif
#endif