https://github.com/git/git
Revision c8af1f475afb01b555abe5087b6b2f46b2d00b55 authored by Junio C Hamano on 06 February 2021, 00:31:25 UTC, committed by Junio C Hamano on 06 February 2021, 00:31:25 UTC
Doc update.

* vv/send-email-with-less-secure-apps-access:
  git-send-email.txt: mention less secure app access with Gmail
2 parent s 64971f0 + 155067a
Raw File
Tip revision: c8af1f475afb01b555abe5087b6b2f46b2d00b55 authored by Junio C Hamano on 06 February 2021, 00:31:25 UTC
Merge branch 'vv/send-email-with-less-secure-apps-access' into maint
Tip revision: c8af1f4
wildmatch.h
#ifndef WILDMATCH_H
#define WILDMATCH_H

#define WM_CASEFOLD 1
#define WM_PATHNAME 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