aboutsummaryrefslogtreecommitdiff
path: root/viz.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-01-08 01:06:43 -0800
committerBruce Hill <bruce@bruce-hill.com>2021-01-08 01:06:43 -0800
commit03c790d5b61ecc07a34e6d113a5b434b72c835fe (patch)
treec6e1423f4083c62aabd36c22b36ea8c3fba54054 /viz.h
parent668c7baf55d07cb429b30b92ea8ce302f9de053a (diff)
Renamed viz -> printing, and tidied up the code a bit
Diffstat (limited to 'viz.h')
-rw-r--r--viz.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/viz.h b/viz.h
deleted file mode 100644
index 8b11bcc..0000000
--- a/viz.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * Header file for viz.c (visualizing matches)
- */
-#ifndef VIZ__H
-#define VIZ__H
-
-typedef struct match_node_s {
- match_t *m;
- struct match_node_s *next;
-} match_node_t;
-
-__attribute__((nonnull))
-void visualize_match(match_t *m);
-__attribute__((nonnull))
-void print_match(FILE *out, file_t *f, match_t *m, print_options_t options);
-
-#endif
-// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1