diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-09-21 18:45:43 -0700 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-09-21 18:45:43 -0700 |
| commit | 90c3c13a02e501d3bea839dceb00f09c89bfb5fe (patch) | |
| tree | c084e3d34fb5fd83a6cc207a78cc8826cafdc031 /pattern.h | |
| parent | 9401facbe7f768c7f4574a7f101d57f7075c42b7 (diff) | |
Moving cache logic into match, cleaner next_match() API, and slightly
less tightly coupled UTF8 API
Diffstat (limited to 'pattern.h')
| -rw-r--r-- | pattern.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ __attribute__((returns_nonnull, nonnull(1,2))) pat_t *new_pat(file_t *f, const char *start, const char *end, size_t minlen, ssize_t maxlen, enum pattype_e type); -__attribute__((nonnull(1,2))) +__attribute__((nonnull)) 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); |
