bloodrun-editor/q3map2/libs/filematch.h
2026-04-02 20:51:01 +08:00

13 lines
302 B
C
Executable file

#pragma once
#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