From c46a8227d0bfc31e4f71b6441303348f5c31174b Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 20 Jan 2021 16:12:46 -0800 Subject: Added --skip flag for skipping over patterns --- match.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'match.h') diff --git a/match.h b/match.h index ee6fe6a..8584f04 100644 --- a/match.h +++ b/match.h @@ -10,7 +10,7 @@ #include "types.h" __attribute__((nonnull(2,4))) -match_t *next_match(def_t *defs, file_t *f, match_t *prev, pat_t *pat, bool ignorecase); +match_t *next_match(def_t *defs, file_t *f, match_t *prev, pat_t *pat, pat_t *skip, bool ignorecase); __attribute__((nonnull)) match_t *get_capture(match_t *m, const char **id); __attribute__((nonnull)) -- cgit v1.2.3