You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
380 B
24 lines
380 B
/* See LICENSE file for copyright and license details. */
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <sys/sysinfo.h>
|
|
|
|
#include "../../util.h"
|
|
|
|
const char *
|
|
uptime(void)
|
|
{
|
|
int h;
|
|
int m;
|
|
int uptime = 0;
|
|
struct sysinfo info;
|
|
|
|
sysinfo(&info);
|
|
uptime = info.uptime;
|
|
|
|
h = uptime / 3600;
|
|
m = (uptime - h * 3600) / 60;
|
|
|
|
return bprintf("%dh %dm", h, m);
|
|
}
|
|
|