File: sgetopt.c

package info (click to toggle)
qmail 1.03-38
  • links: PTS
  • area: non-free
  • in suites: sarge
  • size: 4,236 kB
  • ctags: 2,091
  • sloc: ansic: 16,309; makefile: 2,448; sh: 777; perl: 526
file content (54 lines) | stat: -rw-r--r-- 1,277 bytes parent folder | download | duplicates (33)
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
46
47
48
49
50
51
52
53
54
/* sgetopt.c, sgetopt.h: (yet another) improved getopt clone, outer layer
D. J. Bernstein, djb@pobox.com.
Depends on subgetopt.h, substdio.h, subfd.h.
No system requirements.
19970208: Cleanups.
931201: Baseline.
No known patent problems.

Documentation in sgetopt.3.
*/

#include "substdio.h"
#include "subfd.h"
#define SGETOPTNOSHORT
#include "sgetopt.h"
#define SUBGETOPTNOSHORT
#include "subgetopt.h"

#define getopt sgetoptmine
#define optind subgetoptind
#define opterr sgetopterr
#define optproblem subgetoptproblem
#define optprogname sgetoptprogname

int opterr = 1;
char *optprogname = 0;

int getopt(argc,argv,opts)
int argc;
char **argv;
char *opts;
{
  int c;
  char *s;

  if (!optprogname) {
    optprogname = *argv;
    if (!optprogname) optprogname = "";
    for (s = optprogname;*s;++s) if (*s == '/') optprogname = s + 1;
  }
  c = subgetopt(argc,argv,opts);
  if (opterr)
    if (c == '?') {
      char chp[2]; chp[0] = optproblem; chp[1] = '\n';
      substdio_puts(subfderr,optprogname);
      if (argv[optind] && (optind < argc))
        substdio_puts(subfderr,": illegal option -- ");
      else
        substdio_puts(subfderr,": option requires an argument -- ");
      substdio_put(subfderr,chp,2);
      substdio_flush(subfderr);
    }
  return c;
}