release.sh: simplify by removing usb option
[minix3.git] / bin / pax / getoldopt.c
blob2d02e7e7170dc135026a63c41143ebfe11f79807
1 /* $NetBSD: getoldopt.c,v 1.23 2012/08/09 11:05:59 christos Exp $ */
3 /*
4 * Plug-compatible replacement for getopt() for parsing tar-like
5 * arguments. If the first argument begins with "-", it uses getopt;
6 * otherwise, it uses the old rules used by tar, dump, and ps.
8 * Written 25 August 1985 by John Gilmore (ihnp4!hoptoad!gnu) and placed
9 * in the Public Domain for your edification and enjoyment.
12 #if HAVE_NBTOOL_CONFIG_H
13 #include "nbtool_config.h"
14 #endif
16 #include <sys/cdefs.h>
17 #if !defined(lint)
18 __RCSID("$NetBSD: getoldopt.c,v 1.23 2012/08/09 11:05:59 christos Exp $");
19 #endif /* not lint */
21 #if HAVE_NBTOOL_CONFIG_H
22 #include "compat_getopt.h"
23 #else
24 #include <getopt.h>
25 #endif
26 #include <stdio.h>
27 #include <string.h>
28 #include <stdlib.h>
29 #include <unistd.h>
30 #include <stdint.h>
31 #include <sys/stat.h>
32 #include "pax.h"
33 #include "extern.h"
35 int
36 getoldopt(int argc, char **argv, const char *optstring,
37 struct option *longopts, int *idx)
39 static char *key; /* Points to next keyletter */
40 static char use_getopt; /* !=0 if argv[1][0] was '-' */
41 char c;
42 char *place;
44 optarg = NULL;
46 if (key == NULL) { /* First time */
47 if (argc < 2) return -1;
48 key = argv[1];
49 if (*key == '-')
50 use_getopt++;
51 else
52 optind = 2;
55 c = '\0';
56 if (!use_getopt) {
57 c = *key++;
58 if (c == '\0') {
59 key--;
60 use_getopt = 1;
63 if (use_getopt) {
64 if (longopts != NULL) {
65 return getopt_long(argc, argv, optstring,
66 longopts, idx);
67 } else {
68 return getopt(argc, argv, optstring);
72 place = strchr(optstring, c);
74 if (place == NULL || c == ':') {
75 fprintf(stderr, "%s: unknown option %c\n", argv[0], c);
76 return '?';
79 place++;
80 if (*place == ':') {
81 if (optind < argc) {
82 optarg = argv[optind];
83 optind++;
84 } else {
85 fprintf(stderr, "%s: %c argument missing\n",
86 argv[0], c);
87 return '?';
91 return c;