summaryrefslogtreecommitdiffstats
path: root/src/printf-utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/printf-utils.h')
-rw-r--r--src/printf-utils.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/printf-utils.h b/src/printf-utils.h
index f475214..9255c9c 100644
--- a/src/printf-utils.h
+++ b/src/printf-utils.h
@@ -20,6 +20,8 @@
#ifndef PRINTF_UTILS_H
#define PRINTF_UTILS_H
+#include "global.h"
+
extern int printf_prev;
#define PRINTF_BACK() do { if ( printf_prev ) { printf("\r%-*s\r", printf_prev, ""); printf_prev = 0; } } while (0)
@@ -27,6 +29,7 @@ extern int printf_prev;
#define PRINTF_LINE(...) do { PRINTF_BACK(); PRINTF_ADD(__VA_ARGS__); fflush(stdout); } while (0)
#define PRINTF_END() do { if ( printf_prev ) { printf("\n"); printf_prev = 0; } } while (0)
#define PRINTF_ERROR(...) do { PRINTF_END(); ERROR_INFO(__VA_ARGS__); } while (0)
+#define PRINTF_ERROR_RETURN(str, ...) do { PRINTF_ERROR("%s", str); return __VA_ARGS__; } while (0)
void printf_progressbar(unsigned long long part, unsigned long long total);
void printf_and_wait(const char * format, ...);