4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #pragma ident "%Z%%M% %I% %E% SMI"
29 #include <sys/salib.h>
33 int opterr
= 1, optind
= 1, optopt
= 0;
37 extern void warn(const char *, ...);
50 getopt(int argc
, char *const *argv
, const char *opts
)
56 if (optind
>= argc
|| argv
[optind
][0] != '-' ||
57 argv
[optind
] == NULL
|| argv
[optind
][1] == '\0')
59 else if (strcmp(argv
[optind
], "--") == NULL
) {
64 optopt
= c
= (unsigned char)argv
[optind
][_sp
];
65 if (c
== ':' || (cp
= strchr(opts
, c
)) == NULL
) {
67 warn("%s: illegal option -- %c\n", argv
[0], c
);
68 if (argv
[optind
][++_sp
] == '\0') {
75 if (*(cp
+ 1) == ':') {
76 if (argv
[optind
][_sp
+1] != '\0')
77 optarg
= &argv
[optind
++][_sp
+1];
78 else if (++optind
>= argc
) {
80 warn("%s: option requires an argument"
81 " -- %c\n", argv
[0], c
);
85 return (opts
[0] == ':' ? ':' : '?');
87 optarg
= argv
[optind
++];
90 if (argv
[optind
][++_sp
] == '\0') {