mirror of
https://github.com/ksherlock/gopher.git
synced 2024-12-26 21:30:12 +00:00
19 lines
275 B
C
19 lines
275 B
C
#ifndef __Options__
|
|
#define __Options__
|
|
|
|
typedef struct Options
|
|
{
|
|
unsigned _0:1;
|
|
unsigned _1:1;
|
|
unsigned _9:1;
|
|
unsigned _I:1;
|
|
unsigned _O:1;
|
|
unsigned _i:1;
|
|
char *_o;
|
|
unsigned _v:1;
|
|
} Options;
|
|
|
|
int GetOptions(int argc, char **argv,
|
|
Options *options);
|
|
#endif
|