3 * @brief Define the Options structure and the g_options variable
10 /** Store options passed or calculated from arguments to the program **/
13 /** Name of program **/
15 /** Determines at what level log messages are shown **/
17 /** Time at which program begins to run **/
18 struct timeval start_time;
19 /** Time at which program exits **/
20 struct timeval end_time;
22 /** Path to ADC files **/
23 const char * adc_device_path;
25 /*** Horrible horrible hack ***/
27 /*** Horrible horrible hack ***/
32 /** The only instance of the Options struct **/
33 extern Options g_options;