reflog: use parse_config_key in config callback
[gitweb.git] / wildmatch.h
index e7f1a35f2ae850dae37cd029d20a4ed47c8a9cf6..984a38cdc2a1a6d3b19816ccc0a45055a9c8508a 100644 (file)
@@ -1,6 +1,9 @@
 /* wildmatch.h */
 
-int wildmatch(const char *pattern, const char *text);
-int iwildmatch(const char *pattern, const char *text);
-int wildmatch_array(const char *pattern, const char*const *texts, int where);
-int litmatch_array(const char *string, const char*const *texts, int where);
+#define ABORT_MALFORMED 2
+#define NOMATCH 1
+#define MATCH 0
+#define ABORT_ALL -1
+#define ABORT_TO_STARSTAR -2
+
+int wildmatch(const char *pattern, const char *text, int flags);