diff options
Diffstat (limited to 'viz.h')
| -rw-r--r-- | viz.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -0,0 +1,10 @@ +/* + * Header file for viz.c (visualizing matches) + */ + +typedef struct match_node_s { + match_t *m; + struct match_node_s *next; +} match_node_t; + +void visualize_match(match_t *m); |
