Catch situations where currentframe() returns None. See SF patch #1447410, this is...
[python.git] / Python / getopt.c
blobd80f60721e21d333a2a1c3d74fa124f4e06822b0
1 /*---------------------------------------------------------------------------*
2 * <RCS keywords>
4 * C++ Library
6 * Copyright 1992-1994, David Gottner
8 * All Rights Reserved
10 * Permission to use, copy, modify, and distribute this software and its
11 * documentation for any purpose and without fee is hereby granted,
12 * provided that the above copyright notice, this permission notice and
13 * the following disclaimer notice appear unmodified in all copies.
15 * I DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL I
17 * BE LIABLE FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
18 * DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER
19 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
20 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22 * Nevertheless, I would like to know about bugs in this library or
23 * suggestions for improvment. Send bug reports and feedback to
24 * davegottner@delphi.com.
25 *---------------------------------------------------------------------------*/
27 #include <stdio.h>
28 #include <string.h>
30 int _PyOS_opterr = 1; /* generate error messages */
31 int _PyOS_optind = 1; /* index into argv array */
32 char *_PyOS_optarg = NULL; /* optional argument */
34 int _PyOS_GetOpt(int argc, char **argv, char *optstring)
36 static char *opt_ptr = "";
37 char *ptr;
38 int option;
40 if (*opt_ptr == '\0') {
42 if (_PyOS_optind >= argc || argv[_PyOS_optind][0] != '-' ||
43 argv[_PyOS_optind][1] == '\0' /* lone dash */ )
44 return -1;
46 else if (strcmp(argv[_PyOS_optind], "--") == 0) {
47 ++_PyOS_optind;
48 return -1;
51 opt_ptr = &argv[_PyOS_optind++][1];
54 if ( (option = *opt_ptr++) == '\0')
55 return -1;
57 if ((ptr = strchr(optstring, option)) == NULL) {
58 if (_PyOS_opterr)
59 fprintf(stderr, "Unknown option: -%c\n", option);
61 return '?';
64 if (*(ptr + 1) == ':') {
65 if (*opt_ptr != '\0') {
66 _PyOS_optarg = opt_ptr;
67 opt_ptr = "";
70 else {
71 if (_PyOS_optind >= argc) {
72 if (_PyOS_opterr)
73 fprintf(stderr,
74 "Argument expected for the -%c option\n", option);
75 return '?';
78 _PyOS_optarg = argv[_PyOS_optind++];
82 return option;