summaryrefslogtreecommitdiff
path: root/tickmarks.h
blob: 1e310dbb1857c08596ea1ae6380c0d2ba04934fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef TICKMARKS_H
#define TICKMARKS_H

struct tickmark {
	double value;
	char string[20];
};

int calc_tickmarks(double min, double max, int nticks, struct tickmark **tm,
			int *power_of_ten, int use_KMG_symbols, int base_off);

#endif