]> git.itanic.dy.fi Git - log-plotter/blob - options.h
Convert all existing prints into appropriate trace print
[log-plotter] / options.h
1 #ifndef _OPTIONS_H
2 #define _OPTIONS_H
3
4 struct plotter_options {
5         char *device_path;
6         char *output_path;
7         int baud_rate;
8 };
9
10 int read_args(int argc, char *argv[], struct plotter_options *opts);
11
12 #endif