diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-01-08 01:00:27 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-01-08 01:00:27 -0800 |
| commit | 668c7baf55d07cb429b30b92ea8ce302f9de053a (patch) | |
| tree | b103ad6a8ee1ee29684953f93bd32ea8c875bc73 /vm.h | |
| parent | 7da6cde0fdecf329de631f8be0c9f38231b3451e (diff) | |
Refactoring, moving visualization and virtual machine code into proper
files
Diffstat (limited to 'vm.h')
| -rw-r--r-- | vm.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ match_t *match(grammar_t *g, file_t *f, const char *str, vm_op_t *op, unsigned i __attribute__((nonnull)) void destroy_match(match_t **m); __attribute__((nonnull)) -void print_match(FILE *out, file_t *f, match_t *m, print_options_t options); +match_t *get_capture(match_t *m, const char **r); #endif // vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1 |
