Files
Waybar/include/util/format.hpp
Guillaume Maudoux 1d39ef5c8e Add a disk module
2019-09-25 08:47:33 +02:00

10 lines
159 B
C++

#pragma once
#include <sstream>
namespace waybar::util {
std::string pow_format(unsigned long long value, const std::string &unit, bool binary = false);
}