tmux-mem-cpu-load/graph.h
2015-01-17 23:48:54 +01:00

10 lines
199 B
C++

#ifndef GRAPH_H_
#define GRAPH_H_
#include <string>
std::string get_graph_by_percentage(unsigned, unsigned len = 10);
std::string get_graph_by_value(unsigned, unsigned, unsigned len = 10);
#endif