#pragma once #include #include /** * @brief Convert a given number of seconds to a human readable format * * @param time Number of seconds * @return Human readable formatted string */ std::string format_time(uint64_t time) noexcept; /** * @brief Convert a given number of nanoseconds to a human readable format * * @param time Number of nanoseconds * @return Human readable formatted string */ std::string format_time_ns(uint64_t time) noexcept;