gfio: Add mini library to draw bar graphs and line graphs
[fio.git] / tickmarks.h
1 #ifndef TICKMARKS_H
2 #define TICKMARKS_H
3
4 struct tickmark {
5         double value;
6         char string[20];
7 };
8
9 int calc_tickmarks(double min, double max, int nticks, struct tickmark **tm);
10
11 #endif