mirror of
https://github.com/ksherlock/gopher.git
synced 2025-04-29 04:37:42 +00:00
45 lines
501 B
Plaintext
45 lines
501 B
Plaintext
#
|
|
# gopher command line options.
|
|
#
|
|
|
|
%extra_includes ->
|
|
extern void help(void);
|
|
extern void version(void);
|
|
/* global */
|
|
struct Options flags;
|
|
|
|
|
|
|
|
-h [virtual] ->
|
|
help();
|
|
exit(0);
|
|
|
|
-V [virtual] ->
|
|
version();
|
|
exit(0);
|
|
|
|
# -o specifies the output name
|
|
# -O gets the name from the URL.
|
|
-o: ->
|
|
options->_O = 0;
|
|
|
|
-O
|
|
|
|
-i
|
|
-I
|
|
-v
|
|
|
|
# -[0|1] -- set HTTP version.
|
|
|
|
-0 ->
|
|
options->_1 = 0;
|
|
options->_9 = 0;
|
|
|
|
-1 ->
|
|
options->_0 = 0;
|
|
options->_9 = 0;
|
|
|
|
-9 ->
|
|
options->_0 = 0;
|
|
options->_1 = 0;
|