mirror of
https://github.com/ksherlock/gopher.git
synced 2024-09-17 23:56:14 +00:00
17 lines
274 B
C
17 lines
274 B
C
#ifndef __flags_h__
|
|
#define __flags_h__
|
|
|
|
typedef struct Flags {
|
|
|
|
int _0:1; // -1 (use http 1.0)
|
|
int _9:1; // -9 (use http 0.9)
|
|
int _O:1; // -O (file name from url)
|
|
int _v:1; // -v (verbose)
|
|
|
|
char *_o;
|
|
} Flags;
|
|
|
|
|
|
extern struct Flags flags;
|
|
|
|
#endif |