]> git.itanic.dy.fi Git - log-plotter/blob - options.h
8ec9abc67a15d1d8b51a2f92912523740e816d5c
[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         char *config_file_path;
9 };
10
11 int read_args(int argc, char *argv[], struct plotter_options *opts);
12
13 #endif