aboutsummaryrefslogtreecommitdiff
path: root/viz.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2020-12-12 16:31:53 -0800
committerBruce Hill <bruce@bruce-hill.com>2020-12-12 16:31:53 -0800
commiteb329bdac9fe56d67cb130fb6cdbb28743c6504b (patch)
tree8ba8bded07820519de06728618e4e32e80da3af4 /viz.h
parent6e1fd928148cc7e46015e06c27f824d4111f96ee (diff)
Bunch of changes, including some bpeg->bp renaming, and adding
visualizations
Diffstat (limited to 'viz.h')
-rw-r--r--viz.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/viz.h b/viz.h
new file mode 100644
index 0000000..80d8cee
--- /dev/null
+++ b/viz.h
@@ -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);