diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-02-27 23:11:35 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-02-27 23:11:35 +0000 |
commit | 3ac8d1c87995eda84764e4239218d24f81e8e6a9 (patch) | |
tree | 6e6922175d926355b9697eb5a97496ff8fd814f6 | |
parent | 5f0937d86a9039c9cd578cc7026540dec05d64fa (diff) | |
download | uClibc-alpine-3ac8d1c87995eda84764e4239218d24f81e8e6a9.tar.bz2 uClibc-alpine-3ac8d1c87995eda84764e4239218d24f81e8e6a9.tar.xz |
Copy from trunk.
-rw-r--r-- | libc/unistd/getopt_long-susv3.c | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/libc/unistd/getopt_long-susv3.c b/libc/unistd/getopt_long-susv3.c new file mode 100644 index 000000000..9bae3d845 --- /dev/null +++ b/libc/unistd/getopt_long-susv3.c @@ -0,0 +1,58 @@ +/* + * Copyright (C) 2006 Rich Felker <dalias@aerifal.cx> + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#include <stddef.h> +#include <getopt.h> +#include <stdio.h> + +libc_hidden_proto(getopt) + +static int __getopt_long(int argc, char *const *argv, const char *optstring, const struct option *longopts, int *idx, int longonly) +{ + if (optind >= argc || !argv[optind] || argv[optind][0] != '-') return -1; + if ((longonly && argv[optind][1]) || + (argv[optind][1] == '-' && argv[optind][2])) + { + int i; + char *opt = argv[optind]+2; + for (i=0; longopts[i].name; i++) { + const char *name = longopts[i].name; + while (*name && *name++ == *opt++); + if (*name && *opt != '=') continue; + if (*opt == '=') { + 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); +} |