diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-01-15 19:21:41 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-01-15 19:21:41 -0800 |
| commit | 10dbcdd4fd7bf2f14d49bdf19139f8dd5d53aebd (patch) | |
| tree | 2cb4e93e52abdd87c4ab45dd20d8812ed298a8b0 /vm.h | |
| parent | 984a869c985f8cc334cc40bd5b387e11d9f9ba29 (diff) | |
Renaming op -> pat in variable names
Diffstat (limited to 'vm.h')
| -rw-r--r-- | vm.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -9,13 +9,13 @@ #include "types.h" __attribute__((nonnull(2,4))) -match_t *next_match(def_t *defs, file_t *f, match_t *prev, pat_t *op, unsigned int flags); +match_t *next_match(def_t *defs, file_t *f, match_t *prev, pat_t *pat, unsigned int flags); __attribute__((hot, nonnull(2,3,4))) -match_t *match(def_t *defs, file_t *f, const char *str, pat_t *op, unsigned int flags); +match_t *match(def_t *defs, file_t *f, const char *str, pat_t *pat, unsigned int flags); __attribute__((nonnull)) match_t *get_capture(match_t *m, const char **id); __attribute__((nonnull)) -void destroy_pat(pat_t *op); +void destroy_pat(pat_t *pat); match_t *new_match(void); __attribute__((nonnull)) void recycle_if_unused(match_t **at_m); |
