summaryrefslogtreecommitdiffstats
path: root/app/time_fn.c
diff options
context:
space:
mode:
Diffstat (limited to 'app/time_fn.c')
-rw-r--r--app/time_fn.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/time_fn.c b/app/time_fn.c
index 957bc47..87fb48f 100644
--- a/app/time_fn.c
+++ b/app/time_fn.c
@@ -217,16 +217,16 @@ void utc_to_str (char *dst, UTC u)
}
-void time_print_utc (const char *p, UTC u)
+void time_print_utc (const char *p, UTC u, const char *t)
{
const char *dname[] = {"Sun", "Mon", "Tue", "Wed", "Thr", "Fri", "Sat", "Sun"};
const char *mname[] = {"", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
- printf ("%s%s %04d-%s-%02d %02d:%02d:%02d.%09d\r\n", p ? p : "", dname[u.wday], u.year, mname[u.month], u.mday, u.hour, u.minute, u.second, u.nanosecond);
+ printf ("%s%s %04d-%s-%02d %02d:%02d:%02d.%09d %s\r\n", p ? p : "", dname[u.wday], u.year, mname[u.month], u.mday, u.hour, u.minute, u.second, u.nanosecond , t ? t : "");
}
-void time_print_epoch (const char *p, EPOCH e)
+void time_print_epoch (const char *p, EPOCH e, const char *t)
{
UTC u = time_epoch_to_utc (e);
- time_print_utc (p, u);
+ time_print_utc (p, u, t);
}