aboutsummaryrefslogtreecommitdiff
path: root/pattern.h
diff options
context:
space:
mode:
Diffstat (limited to 'pattern.h')
-rw-r--r--pattern.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/pattern.h b/pattern.h
index c0a5ed4..c237b50 100644
--- a/pattern.h
+++ b/pattern.h
@@ -15,10 +15,12 @@ __attribute__((nonnull(1,2)))
pat_t *bp_stringpattern(file_t *f, const char *str);
__attribute__((nonnull(1,2)))
pat_t *bp_replacement(file_t *f, pat_t *replacepat, const char *replacement);
+__attribute__((nonnull(1)))
+pat_t *chain_together(file_t *f, pat_t *first, pat_t *second);
__attribute__((nonnull))
pat_t *bp_pattern(file_t *f, const char *str);
__attribute__((nonnull))
-def_t *bp_definition(file_t *f, const char *str);
+def_t *bp_definition(def_t *defs, file_t *f, const char *str);
__attribute__((nonnull))
void destroy_pat(pat_t *pat);