1#ifndef WILDMATCH_H2#define WILDMATCH_H34#define WM_CASEFOLD 15#define WM_PATHNAME 267#define WM_NOMATCH 18#define WM_MATCH 09#define WM_ABORT_ALL -110#define WM_ABORT_TO_STARSTAR -21112int wildmatch(const char *pattern, const char *text, unsigned int flags);13#endif