NetBSD/lib/libntp/getopt.c

110 lines
2.3 KiB
C
Raw Normal View History

1998-08-12 18:11:49 +04:00
/* $NetBSD: getopt.c,v 1.7 1998/08/12 14:11:49 christos Exp $ */
1998-01-09 06:15:09 +03:00
1997-04-18 17:22:49 +04:00
/*
* getopt - get option letter from argv
*
* This is a version of the public domain getopt() implementation by
* Henry Spencer, changed for 4.3BSD compatibility (in addition to System V).
* It allows rescanning of an option list by setting optind to 0 before
* calling, which is why we use it even if the system has its own (in fact,
* this one has a unique name so as not to conflict with the system's).
* Thanks to Dennis Ferguson for the appropriate modifications.
*
* This file is in the Public Domain.
*/
/*LINTLIBRARY*/
#include <stdio.h>
#include "ntp_stdlib.h"
#ifdef lint
#undef putc
#define putc fputc
#endif /* lint */
char *ntp_optarg; /* Global argument pointer. */
int ntp_optind = 0; /* Global argv index. */
int ntp_opterr = 1; /* for compatibility, should error be printed? */
int ntp_optopt; /* for compatibility, option character checked */
static char *scan = NULL; /* Private scan pointer. */
1998-03-06 21:17:13 +03:00
static const char *prog = "amnesia";
1997-10-09 15:24:59 +04:00
1998-08-12 18:11:49 +04:00
static int badopt P((char *, int));
1997-04-18 17:22:49 +04:00
/*
* Print message about a bad option.
*/
static int
badopt(mess, ch)
char *mess;
int ch;
{
if (ntp_opterr) {
fputs(prog, stderr);
fputs(mess, stderr);
(void) putc(ch, stderr);
(void) putc('\n', stderr);
}
return ('?');
}
int
ntp_getopt(argc, argv, optstring)
int argc;
char *argv[];
1998-08-12 18:11:49 +04:00
const char *optstring;
1997-04-18 17:22:49 +04:00
{
register char c;
1998-08-12 18:11:49 +04:00
register const char *place;
1997-04-18 17:22:49 +04:00
prog = argv[0];
ntp_optarg = NULL;
if (ntp_optind == 0) {
scan = NULL;
ntp_optind++;
}
if (scan == NULL || *scan == '\0') {
if (ntp_optind >= argc
|| argv[ntp_optind][0] != '-'
|| argv[ntp_optind][1] == '\0') {
1997-10-17 18:31:48 +04:00
return (-1);
1997-04-18 17:22:49 +04:00
}
if (argv[ntp_optind][1] == '-'
&& argv[ntp_optind][2] == '\0') {
ntp_optind++;
1997-10-17 18:31:48 +04:00
return (-1);
1997-04-18 17:22:49 +04:00
}
scan = argv[ntp_optind++]+1;
}
c = *scan++;
ntp_optopt = c & 0377;
for (place = optstring; place != NULL && *place != '\0'; ++place)
if (*place == c)
break;
if (place == NULL || *place == '\0' || c == ':' || c == '?') {
return (badopt(": unknown option -", c));
}
place++;
if (*place == ':') {
if (*scan != '\0') {
ntp_optarg = scan;
scan = NULL;
} else if (ntp_optind >= argc) {
return (badopt(": option requires argument -", c));
} else {
ntp_optarg = argv[ntp_optind++];
}
}
return (c & 0377);
}