| Stephen M. Cameron | af58ef3 | 2012-03-07 07:56:16 +0100 | [diff] [blame] | 1 | #ifndef TICKMARKS_H | 
| 2 | #define TICKMARKS_H | ||||
| 3 | |||||
| 4 | struct tickmark { | ||||
| 5 | double value; | ||||
| 6 | char string[20]; | ||||
| 7 | }; | ||||
| 8 | |||||
| Stephen M. Cameron | 7175d91 | 2012-03-11 11:35:10 +0100 | [diff] [blame] | 9 | int calc_tickmarks(double min, double max, int nticks, struct tickmark **tm, | 
| Jens Axboe | d8fbeef | 2012-03-14 10:25:44 +0100 | [diff] [blame] | 10 | int *power_of_ten, int use_KMG_symbols, int base_off); | 
| Stephen M. Cameron | af58ef3 | 2012-03-07 07:56:16 +0100 | [diff] [blame] | 11 | |
| 12 | #endif | ||||