URI: 
       tscale.h - ploot - simple plotting tools
  HTML git clone git://bitreich.org/ploot git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/ploot
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
       ---
       tscale.h (347B)
       ---
            1 #ifndef SCALE_H
            2 #define SCALE_H
            3 
            4 #include <stddef.h>
            5 #include <time.h>
            6 #include "csv.h"
            7 
            8 int        scale_ypos(double, double, double, int);
            9 int        scale_xpos(time_t, time_t, time_t, int);
           10 void        scale_minmax(struct csv *, int, time_t *, time_t *, double *, double *);
           11 time_t        scale_csvep(time_t, time_t, int);
           12 double        scale_vstep(double, double, int);
           13 
           14 #endif