blob: ab817a76b77afe445126831bfeaf9e78442d3619 [file] [log] [blame]
Stephen M. Cameronaf58ef32012-03-07 07:56:16 +01001#ifndef TICKMARKS_H
2#define TICKMARKS_H
3
4struct tickmark {
5 double value;
6 char string[20];
7};
8
9int calc_tickmarks(double min, double max, int nticks, struct tickmark **tm);
10
11#endif