mailing list of musl libc
 help / color / mirror / code / Atom feed
65bc14c6c1535c4549f35e4f8d6644a16ea3df15 blob 1786 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
 
#define _GNU_SOURCE
#include <stddef.h>
#include <getopt.h>
#include <stdio.h>
#include <string.h>

extern int __optpos, __optreset;

static int __getopt_long(int argc, char *const *argv, const char *optstring, const struct option *longopts, int *idx, int longonly)
{
	if (!optind || __optreset) {
		__optreset = 0;
		__optpos = 0;
		optind = 1;
	}
	if (optind >= argc || !argv[optind] || argv[optind][0] != '-') return -1;
	if ((longonly && argv[optind][1]) ||
		(argv[optind][1] == '-' && argv[optind][2]))
	{
		int i, j;
		for (i=0; longopts[i].name; i++) {
			const char *name = longopts[i].name;
			char *opt = argv[optind]+1, *c;
			if (*opt == '-') opt++;
			for (c = opt; *name && *name == *c; name++, c++);
			if (*c && *c != '=') continue;
			if (*name) {
				if (name == longopts[i].name) continue;
				for (j=i+1; longopts[j].name && strncmp(opt, longopts[j].name, c - opt); j++);
				if (longopts[j].name) continue;
			}
			if (*c == '=') {
				if (!longopts[i].has_arg) continue;
				optarg = opt+1;
			} else {
				if (longopts[i].has_arg == required_argument) {
					if (!(optarg = argv[++optind]))
						return ':';
				} else optarg = NULL;
			}
			optind++;
			if (idx) *idx = i;
			if (longopts[i].flag) {
				*longopts[i].flag = longopts[i].val;
				return 0;
			}
			return longopts[i].val;
		}
		if (argv[optind][1] == '-') {
			optind++;
			return '?';
		}
	}
	return getopt(argc, argv, optstring);
}

int getopt_long(int argc, char *const *argv, const char *optstring, const struct option *longopts, int *idx)
{
	return __getopt_long(argc, argv, optstring, longopts, idx, 0);
}

int getopt_long_only(int argc, char *const *argv, const char *optstring, const struct option *longopts, int *idx)
{
	return __getopt_long(argc, argv, optstring, longopts, idx, 1);
}
debug log:

solving 65bc14c ...
found 65bc14c in https://inbox.vuxu.org/musl/1383630343-2787-1-git-send-email-mforney@mforney.org/
found 4ef5a5c in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 4ef5a5c7a861d8ea3fe8cefb1f248e60d35db981	src/misc/getopt_long.c

applying [1/1] https://inbox.vuxu.org/musl/1383630343-2787-1-git-send-email-mforney@mforney.org/
diff --git a/src/misc/getopt_long.c b/src/misc/getopt_long.c
index 4ef5a5c..65bc14c 100644

Checking patch src/misc/getopt_long.c...
Applied patch src/misc/getopt_long.c cleanly.

index at:
100644 65bc14c6c1535c4549f35e4f8d6644a16ea3df15	src/misc/getopt_long.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).