1#ifndef WILDMATCH_H2#define WILDMATCH_H34#define WM_CASEFOLD 156#define WM_ABORT_MALFORMED 27#define WM_NOMATCH 18#define WM_MATCH 09#define WM_ABORT_ALL -110#define WM_ABORT_TO_STARSTAR -21112struct wildopts;1314int wildmatch(const char *pattern, const char *text,15unsigned int flags,16struct wildopts *wo);17#endif