#ifndef _OPTIONS_H #define _OPTIONS_H struct plotter_options { char *device_path; char *output_path; int baud_rate; }; int read_args(int argc, char *argv[], struct plotter_options *opts); #endif