8 lines
164 B
C
8 lines
164 B
C
#ifndef GRAPH_H_
|
|
#define GRAPH_H_
|
|
|
|
char * getGraphByPrecentage(unsigned, unsigned len = 10);
|
|
char * getGraphByValue(unsigned, unsigned, unsigned len = 10);
|
|
|
|
#endif
|