source: git/branches/dmik/wildmatch.h@ 782

Last change on this file since 782 was 782, checked in by dmik, 11 years ago

git: Merge version 2.0.0 from vendor to dmik branch.

  • Property svn:eol-style set to native
File size: 346 bytes
Line 
1#ifndef WILDMATCH_H
2#define WILDMATCH_H
3
4#define WM_CASEFOLD 1
5#define WM_PATHNAME 2
6
7#define WM_ABORT_MALFORMED 2
8#define WM_NOMATCH 1
9#define WM_MATCH 0
10#define WM_ABORT_ALL -1
11#define WM_ABORT_TO_STARSTAR -2
12
13struct wildopts;
14
15int wildmatch(const char *pattern, const char *text,
16 unsigned int flags,
17 struct wildopts *wo);
18#endif
Note: See TracBrowser for help on using the repository browser.