From 1cbcfc6f69e50d309698b6aa16a48b7f282913f5 Mon Sep 17 00:00:00 2001 From: Michal Sekletar Date: Tue, 21 Sep 2021 09:28:29 +0200 Subject: [PATCH] basic/time-util: introduce FORMAT_TIMESPAN This is cherry-pick of the relevant part from the tree-wide change in 5291f26d4a6. Related: #2005024 --- src/basic/time-util.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/basic/time-util.h b/src/basic/time-util.h index 2bd947d6a8..8254913930 100644 --- a/src/basic/time-util.h +++ b/src/basic/time-util.h @@ -67,6 +67,7 @@ typedef enum TimestampStyle { #define FORMAT_TIMESTAMP_WIDTH 28U /* when outputting, assume this width */ #define FORMAT_TIMESTAMP_RELATIVE_MAX 256U #define FORMAT_TIMESPAN_MAX 64U +#define FORMAT_TIMESPAN(t, accuracy) format_timespan((char[FORMAT_TIMESPAN_MAX]){}, FORMAT_TIMESPAN_MAX, t, accuracy) #define TIME_T_MAX (time_t)((UINTMAX_C(1) << ((sizeof(time_t) << 3) - 1)) - 1)