diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2020-12-14 22:13:47 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2020-12-14 22:13:47 -0800 |
| commit | 3acf397e6d772778490d7da9f33f3a8f939c9efd (patch) | |
| tree | 28b8ba262bb1b40670f87e55b183acf2f3bda6bd /viz.h | |
| parent | 2fb68fa97f096e5bd0f3ff81d31c3bc61719ae8a (diff) | |
Imports cleanup and removing FILE* parameter from json
Diffstat (limited to 'viz.h')
| -rw-r--r-- | viz.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,6 +1,8 @@ /* * Header file for viz.c (visualizing matches) */ +#ifndef VIZ__H +#define VIZ__H typedef struct match_node_s { match_t *m; @@ -8,3 +10,6 @@ typedef struct match_node_s { } match_node_t; void visualize_match(match_t *m); + +#endif +// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1 |
