2020-05-03 00:30:09 -04:00
|
|
|
/*
|
2022-12-10 03:52:46 -05:00
|
|
|
* Copyright (c) 2020-2022, the SerenityOS developers.
|
2020-05-03 00:30:09 -04:00
|
|
|
*
|
2021-04-22 04:24:48 -04:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-05-03 00:30:09 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-12-04 13:02:33 -05:00
|
|
|
#include <AK/DeprecatedString.h>
|
2020-05-03 00:30:09 -04:00
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2022-12-10 04:01:10 -05:00
|
|
|
// TODO: Add an optional base here for binary vs si units
|
2022-12-10 03:52:46 -05:00
|
|
|
DeprecatedString human_readable_size(u64 size);
|
2022-12-10 04:01:10 -05:00
|
|
|
DeprecatedString human_readable_quantity(u64 quantity, StringView unit = "B"sv);
|
|
|
|
|
2022-12-10 03:52:46 -05:00
|
|
|
DeprecatedString human_readable_size_long(u64 size);
|
|
|
|
DeprecatedString human_readable_time(i64 time_in_seconds);
|
|
|
|
DeprecatedString human_readable_digital_time(i64 time_in_seconds);
|
2022-08-04 09:36:18 -04:00
|
|
|
|
2020-05-03 00:30:09 -04:00
|
|
|
}
|
|
|
|
|
2022-11-26 06:18:30 -05:00
|
|
|
#if USING_AK_GLOBALLY
|
2022-08-04 09:36:18 -04:00
|
|
|
using AK::human_readable_digital_time;
|
2022-12-10 04:01:10 -05:00
|
|
|
using AK::human_readable_quantity;
|
2020-08-22 14:50:48 -04:00
|
|
|
using AK::human_readable_size;
|
2021-03-24 16:06:08 -04:00
|
|
|
using AK::human_readable_size_long;
|
2022-01-05 16:19:08 -05:00
|
|
|
using AK::human_readable_time;
|
2022-11-26 06:18:30 -05:00
|
|
|
#endif
|