]> git.itanic.dy.fi Git - glucose/blob - options.h
utils: Add sanitize_ascii()
[glucose] / options.h
1 #ifndef _OPTIONS_H_
2 #define _OPTINOS_H_
3
4 struct user_options {
5         char *usbdev;
6         int trace_level;
7 };
8
9 int read_args(int argc, char *argv[], struct user_options *opts);
10
11 #endif