mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
57 lines
1.2 KiB
C++
57 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/Format.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibMain/Main.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments)
|
|
{
|
|
TRY(Core::System::pledge("stdio rpath"));
|
|
|
|
FILE* fp = fopen("/proc/uptime", "r");
|
|
if (!fp) {
|
|
perror("fopen(/proc/uptime)");
|
|
return 1;
|
|
}
|
|
|
|
TRY(Core::System::pledge("stdio"));
|
|
|
|
char buffer[BUFSIZ];
|
|
auto* p = fgets(buffer, sizeof(buffer), fp);
|
|
if (!p) {
|
|
perror("fgets");
|
|
return 1;
|
|
}
|
|
|
|
unsigned seconds;
|
|
sscanf(buffer, "%u", &seconds);
|
|
|
|
out("Up ");
|
|
|
|
if (seconds / 86400 > 0) {
|
|
out("{} day{}, ", seconds / 86400, (seconds / 86400) == 1 ? "" : "s");
|
|
seconds %= 86400;
|
|
}
|
|
|
|
if (seconds / 3600 > 0) {
|
|
out("{} hour{}, ", seconds / 3600, (seconds / 3600) == 1 ? "" : "s");
|
|
seconds %= 3600;
|
|
}
|
|
|
|
if (seconds / 60 > 0) {
|
|
out("{} minute{}, ", seconds / 60, (seconds / 60) == 1 ? "" : "s");
|
|
seconds %= 60;
|
|
}
|
|
|
|
out("{} second{}", seconds, seconds == 1 ? "" : "s");
|
|
outln();
|
|
|
|
fclose(fp);
|
|
return 0;
|
|
}
|