aboutsummaryrefslogtreecommitdiff
path: root/viz.h
diff options
context:
space:
mode:
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);