https://github.com/git/git
Raw File
Tip revision: 1f2e64e22dee75db96b92d526d14003ba59a154e authored by Johannes Schindelin on 10 April 2024, 20:04:50 UTC
Git 2.43.4
Tip revision: 1f2e64e
wildmatch.h
#ifndef WILDMATCH_H
#define WILDMATCH_H

#define WM_CASEFOLD 1
#define WM_PATHNAME 2

#define WM_NOMATCH 1
#define WM_MATCH 0

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