summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib/getopt_long.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Fix parsing of ambiguous options, the whole loop must be processed.millert2013-06-081-15/+22
* Fix PR 6267: recheck POSIXLY_CORRECT each time getopt_long() starts a newguenther2011-03-051-12/+12
* getopt_long.c replaced getopt.c 6+ years ago; we can retireblambert2010-07-221-7/+1
* Add parentheses to avoid warning:chl2007-10-311-2/+2
* from wiz@netbsd:jmc2006-10-041-8/+1
* Back out change in rev 1.15 of to allow whitespace to separate amillert2006-09-221-10/+1
* dont' -> don't in comments;jmc2005-10-251-2/+2
* zap remaining rcsid.espie2005-08-081-5/+1
* ansi + de-registerpat2005-03-301-14/+6
* An optional argument cannot start with '-', even if permutation ismillert2004-06-031-4/+5
* Traditionally, getopt(3) has treated "--foo" the same as "--". However,millert2004-02-041-10/+9
* If permutation is disabled (as it is via getopt(3) or when POSIXLY_CORRECTmillert2003-09-221-2/+9
* Sync with share/misc/license.template and add missing DARPA creditmillert2003-06-171-9/+13
* Use an ISC-tyle license for all my code; it is simpler and more permissive.millert2003-06-031-23/+12
* Use the getopt() in getopt_long.c which supports some GNU extensions.millert2003-06-021-2/+4
* When doing permutation, only treat "-" as an option if it was specifiedmillert2002-12-101-4/+5
* SUS (and apparently 1003.1-2001) say to check optstring for NULLmillert2002-12-081-3/+5
* If we are passed "-" in argv and the user didn't specify '-' in optstring,millert2002-12-081-6/+10
* BSD getopt() supports '-' in the optstring so we should too.millert2002-12-081-8/+15
* Fix pasto in last commit.millert2002-12-071-3/+3
* For getopt_long_only() we *do* want to match single-character optionsmillert2002-12-071-41/+36
* Fix two compatibility issues with our getopt_long_only() vs. the GNU version:millert2002-12-061-28/+61
* Correctly handle -Wlong_arg (no space between -W and long_arg) when "W;"millert2002-12-051-6/+8
* Reorganize this so that getopt_only_only() works correctly.millert2002-12-051-221/+208
* Whoops, add missing #ifdef REPLACE_GETOPTmillert2002-12-031-2/+4
* GNU-like getopt_long() from NetBSD with changes by me to supportmillert2002-12-031-0/+510