1 /* For terms of usage/redistribution/modification see the LICENSE file */
2 /* For authors and contributors see the AUTHORS file */
6 timer.c - module to display the elapsed time since a facility
11 #include "iptraf-ng-compat.h"
13 void printelapsedtime(time_t elapsed
, int x
, WINDOW
*win
)
15 unsigned int hours
= elapsed
/ 3600;
16 unsigned int mins
= (elapsed
% 3600) / 60;
18 int y
= getmaxy(win
) - 1;
20 mvwprintw(win
, y
, x
, " Time: %3u:%02u ", hours
, mins
);