aboutsummaryrefslogtreecommitdiff
path: root/print.h
diff options
context:
space:
mode:
Diffstat (limited to 'print.h')
-rw-r--r--print.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/print.h b/print.h
new file mode 100644
index 0000000..09a30f6
--- /dev/null
+++ b/print.h
@@ -0,0 +1,26 @@
+//
+// Header file for print.c (printing/visualizing matches)
+//
+#ifndef PRINT__H
+#define PRINT__H
+
+#include "types.h"
+
+typedef struct {
+ file_t *file;
+ const char *pos;
+ int context_lines;
+ unsigned int needs_line_number:1;
+ unsigned int use_color:1;
+ unsigned int print_line_numbers:1;
+} printer_t;
+
+__attribute__((nonnull))
+void visualize_match(match_t *m);
+__attribute__((nonnull(1,2)))
+void print_match(FILE *out, printer_t *pr, match_t *m);
+__attribute__((nonnull))
+int print_errors(printer_t *pr, match_t *m);
+
+#endif
+// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1