2013-01-01 03:44:05 +01:00
|
|
|
#ifndef WILDMATCH_H
|
|
|
|
#define WILDMATCH_H
|
2012-10-15 08:25:52 +02:00
|
|
|
|
2013-01-01 03:44:05 +01:00
|
|
|
#define WM_CASEFOLD 1
|
2013-01-01 03:44:07 +01:00
|
|
|
#define WM_PATHNAME 2
|
2012-10-15 08:26:00 +02:00
|
|
|
|
2013-01-01 03:44:05 +01:00
|
|
|
#define WM_ABORT_MALFORMED 2
|
|
|
|
#define WM_NOMATCH 1
|
|
|
|
#define WM_MATCH 0
|
|
|
|
#define WM_ABORT_ALL -1
|
|
|
|
#define WM_ABORT_TO_STARSTAR -2
|
|
|
|
|
2017-06-22 23:38:08 +02:00
|
|
|
int wildmatch(const char *pattern, const char *text, unsigned int flags);
|
2013-01-01 03:44:05 +01:00
|
|
|
#endif
|