git/wildmatch.h

#ifndef WILDMATCH_H
#define WILDMATCH_H

#define WM_CASEFOLD
#define WM_PATHNAME

#define WM_NOMATCH
#define WM_MATCH

int wildmatch(const char *pattern, const char *text, unsigned int flags);
#endif