1#ifndef WILDMATCH_H2#define WILDMATCH_H34#define WM_CASEFOLD 15#define WM_PATHNAME 267#define WM_ABORT_MALFORMED 28#define WM_NOMATCH 19#define WM_MATCH 010#define WM_ABORT_ALL -111#define WM_ABORT_TO_STARSTAR -21213struct wildopts;1415int wildmatch(const char *pattern, const char *text,16unsigned int flags,17struct wildopts *wo);18#endif