]> git.itanic.dy.fi Git - glucose/blobdiff - options.h
Added -format option (defaults to "clean"), added "raw" and "CSV" formats.
[glucose] / options.h
index deb46cdb94e684d46e25e5d5d1beadd6f691c1e2..83fefb6ced1b3d4822a64dd7f376c948bebf6a6e 100644 (file)
--- a/options.h
+++ b/options.h
  */
 
 #ifndef _OPTIONS_H_
-#define _OPTINOS_H_
+#define _OPTIONS_H_
 
 struct user_options {
        char *usbdev;
        char *output_path;
+       enum {
+               RAW = 0,
+               CLEAN = 1,
+               CSV = 2,
+       } output_format;
        int trace_level;
 };