Change rpi -> server
[matches/MCTX3420.git] / server / options.h
1 /**
2  * @file options.h
3  * @purpose Declaration of structure to handle options passed to program
4  */
5
6 #ifndef _OPTIONS_H
7 #define _OPTIONS_H
8
9 typedef struct
10 {
11         const char * program; //name of program
12         int verbosity; // verbosity level
13
14 } Options;
15
16 extern Options g_options; // global options structure
17
18 #endif //_OPTIONS_H

UCC git Repository :: git.ucc.asn.au