https://github.com/git/git
Revision c2a9ada7c2aa26ec71033cf1459d25ea91ce45fd authored by Alexander on 14 August 2017, 02:14:25 UTC, committed by GitHub on 14 August 2017, 02:14:25 UTC
Hello.

I fixed 2 mistakes in the tranlstion: 'рашей' -> 'вашей'.
1 parent b3622a4
Raw File
Tip revision: c2a9ada7c2aa26ec71033cf1459d25ea91ce45fd authored by Alexander on 14 August 2017, 02:14:25 UTC
[translation][fix] Fixed mistypes in the russian translation
Tip revision: c2a9ada
wildmatch.h
#ifndef WILDMATCH_H
#define WILDMATCH_H

#define WM_CASEFOLD 1
#define WM_PATHNAME 2

#define WM_ABORT_MALFORMED 2
#define WM_NOMATCH 1
#define WM_MATCH 0
#define WM_ABORT_ALL -1
#define WM_ABORT_TO_STARSTAR -2

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