]> git.sur5r.net Git - tio/blob - src/print.h
New upstream version 1.34
[tio] / src / print.h
1 /*
2  * tio - a simple TTY terminal I/O tool
3  *
4  * Copyright (c) 2014-2022  Martin Lund
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19  * 02110-1301, USA.
20  */
21
22 #pragma once
23
24 #include <stdbool.h>
25 #include "misc.h"
26 #include "error.h"
27
28 extern bool print_tainted;
29 extern char ansi_format[];
30
31 #define ANSI_RESET "\e[0m"
32
33 #define ansi_printf(format, args...) \
34 { \
35   fprintf (stdout, "\r%s" format ANSI_RESET "\r\n", ansi_format, ## args); \
36   fflush(stdout); \
37 }
38
39 #define ansi_printf_raw(format, args...) \
40 { \
41   fprintf (stdout, "%s" format ANSI_RESET, ansi_format, ## args); \
42   fflush(stdout); \
43 }
44
45 #define warning_printf(format, args...) \
46 { \
47   ansi_printf("[%s] Warning: " format, current_time(), ## args); \
48   fflush(stdout); \
49 }
50
51 #define tio_printf(format, args...) \
52 { \
53   if (print_tainted) \
54     putchar('\n'); \
55   ansi_printf("[%s] " format, current_time(), ## args); \
56   print_tainted = false; \
57 }
58
59 #define error_printf(format, args...) \
60   snprintf(error[0], 1000, format, ## args);
61
62 #define error_printf_silent(format, args...) \
63   snprintf(error[1], 1000, format, ## args);
64
65 #ifdef DEBUG
66 #define debug_printf(format, args...) \
67   fprintf (stdout, "[debug] " format, ## args)
68 #define debug_printf_raw(format, args...) \
69   fprintf (stdout, "" format, ## args)
70 #else
71 #define debug_printf(format, args...)
72 #define debug_printf_raw(format, args...)
73 #endif
74
75 void print_hex(char c);
76 void print_normal(char c);
77 void print_enable_ansi_formatting(void);