]>
git.cameronkatri.com Git - apple_cmds.git/blob - file_cmds/pax/getoldopt.c
1 /* $OpenBSD: getoldopt.c,v 1.8 2003/07/02 21:19:33 deraadt Exp $ */
2 /* $NetBSD: getoldopt.c,v 1.3 1995/03/21 09:07:28 cgd Exp $ */
5 * Plug-compatible replacement for getopt() for parsing tar-like
6 * arguments. If the first argument begins with "-", it uses getopt;
7 * otherwise, it uses the old rules used by tar, dump, and ps.
9 * Written 25 August 1985 by John Gilmore (ihnp4!hoptoad!gnu) and placed
10 * in the Public Domain for your edification and enjoyment.
13 #include <sys/cdefs.h>
15 __used
static const char rcsid
[] = "$OpenBSD: getoldopt.c,v 1.8 2003/07/02 21:19:33 deraadt Exp $";
18 #include <sys/types.h>
27 getoldopt(int argc
, char **argv
, const char *optstring
)
29 static char *key
; /* Points to next keyletter */
30 static char use_getopt
; /* !=0 if argv[1][0] was '-' */
36 if (key
== NULL
) { /* First time */
47 return (getopt(argc
, argv
, optstring
));
54 place
= strchr(optstring
, c
);
56 if (place
== NULL
|| c
== ':') {
57 fprintf(stderr
, "%s: unknown option %c\n", argv
[0], c
);
64 optarg
= argv
[optind
];
67 fprintf(stderr
, "%s: %c argument missing\n",