https://github.com/git/git
Raw File
Tip revision: 10dc9846b82b5f4927d57c6bb657a9352121bebf authored by Johannes Schindelin on 10 April 2024, 20:10:07 UTC
Git 2.44.1
Tip revision: 10dc984
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