tmux-mem-cpu-load/graph.h

10 lines
199 B
C
Raw Normal View History

#ifndef GRAPH_H_
#define GRAPH_H_
2015-01-17 17:48:54 -05:00
#include <string>
std::string get_graph_by_percentage(unsigned, unsigned len = 10);
std::string get_graph_by_value(unsigned, unsigned, unsigned len = 10);
#endif