File: rwopt.opt

package info (click to toggle)
rush 1.8%2Bdfsg-1.1
  • links: PTS
  • area: main
  • in suites: bullseye, buster
  • size: 6,024 kB
  • sloc: ansic: 10,627; sh: 8,909; perl: 297; makefile: 192; awk: 37; sed: 24
file content (45 lines) | stat: -rw-r--r-- 1,188 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* This file is part of GNU Rush.                  
   Copyright (C) 2008-2016 Sergey Poznyakoff

   GNU Rush is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   any later version.

   GNU Rush is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with GNU Rush.  If not, see <http://www.gnu.org/licenses/>. */

OPTIONS_BEGIN(gnu, "rushwho",
              [<rushwho - show listing of online Rush users.>])

OPTION(format,F,STRING,
       [<Use STRING instead of the default format.>])
BEGIN
	format = optarg;
END

OPTION(file,f,DIR,
       [<Look for database files in DIR.>])
BEGIN
	base_name_ = optarg;
END

OPTION(no-header,H,,
       [<Do not display header line.>])
BEGIN
	display_header = 0;
END

OPTIONS_END

void
get_options(int argc, char *argv[])
{
	GETOPT(argc, argv);
}