waybar/include/util/format.hpp

10 lines
159 B
C++
Raw Normal View History

2019-09-23 22:25:54 +02:00
#pragma once
#include <sstream>
namespace waybar::util {
std::string pow_format(unsigned long long value, const std::string &unit, bool binary = false);
}