]> git.itanic.dy.fi Git - glucose/blob - options.h
main: Print how many entries we have read from the meter
[glucose] / options.h
1 #ifndef _OPTIONS_H_
2 #define _OPTINOS_H_
3
4 struct user_options {
5         char *usbdev;
6         char *output_path;
7         int trace_level;
8 };
9
10 int read_args(int argc, char *argv[], struct user_options *opts);
11
12 #endif