https://github.com/git/git
Revision 2c185f0476bbbd3a49dee54f3b67a76d90c59091 authored by Junio C Hamano on 14 June 2015, 21:24:49 UTC, committed by Junio C Hamano on 14 June 2015, 21:24:49 UTC
l10n-2.4-maint-de-updates

* tag 'l10n-2.4-maint-de-updates' of git://github.com/git-l10n/git-po:
  l10n: de.po: translation fix for fall-back to 3way merge
  l10n: de.po: punctuation fixes
  l10n: de.po: grammar fix
  l10n: de.po: change error message from "sagen" to "Meinten Sie"
2 parent s 69f9a6e + a9845c5
Raw File
Tip revision: 2c185f0476bbbd3a49dee54f3b67a76d90c59091 authored by Junio C Hamano on 14 June 2015, 21:24:49 UTC
Merge tag 'l10n-2.4-maint-de-updates' of git://github.com/git-l10n/git-po into maint
Tip revision: 2c185f0
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

struct wildopts;

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