index
:
src
cvs/HEAD
kms/intel
kms/radeon
master
OpenBSD base system
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
libc
/
stdlib
/
getopt_long.c
Age
Commit message (
Expand
)
Author
2015-10-01
Eliminate the last of the LINTEDn and PRINTFLIKEn comments. In one
Philip Guenther
2015-09-19
Don't wrap initialized variables: binutils appears to be mishandling them
Philip Guenther
2015-09-12
Wrap <getopt.h> to make the functions weak and make access to the initialized
Philip Guenther
2013-06-08
Fix parsing of ambiguous options, the whole loop must be processed.
Todd C. Miller
2011-03-05
Fix PR 6267: recheck POSIXLY_CORRECT each time getopt_long() starts a new
Philip Guenthe
2010-07-22
getopt_long.c replaced getopt.c 6+ years ago; we can retire
Bret Lambert
2007-10-31
Add parentheses to avoid warning:
Charles Longeau
2006-10-04
from wiz@netbsd:
Jason McIntyre
2006-09-22
Back out change in rev 1.15 of to allow whitespace to separate a
Todd C. Miller
2005-10-25
dont' -> don't in comments;
Jason McIntyre
2005-08-08
zap remaining rcsid.
Marc Espie
2005-03-30
ansi + de-register
Patrick Latifi
2004-06-03
An optional argument cannot start with '-', even if permutation is
Todd C. Miller
2004-02-04
Traditionally, getopt(3) has treated "--foo" the same as "--". However,
Todd C. Miller
2003-09-22
If permutation is disabled (as it is via getopt(3) or when POSIXLY_CORRECT
Todd C. Miller
2003-06-17
Sync with share/misc/license.template and add missing DARPA credit
Todd C. Miller
2003-06-03
Use an ISC-tyle license for all my code; it is simpler and more permissive.
Todd C. Miller
2003-06-02
Use the getopt() in getopt_long.c which supports some GNU extensions.
Todd C. Miller
2002-12-10
When doing permutation, only treat "-" as an option if it was specified
Todd C. Miller
2002-12-08
SUS (and apparently 1003.1-2001) say to check optstring for NULL
Todd C. Miller
2002-12-08
If we are passed "-" in argv and the user didn't specify '-' in optstring,
Todd C. Miller
2002-12-08
BSD getopt() supports '-' in the optstring so we should too.
Todd C. Miller
2002-12-07
Fix pasto in last commit.
Todd C. Miller
2002-12-07
For getopt_long_only() we *do* want to match single-character options
Todd C. Miller
2002-12-06
Fix two compatibility issues with our getopt_long_only() vs. the GNU version:
Todd C. Miller
2002-12-05
Correctly handle -Wlong_arg (no space between -W and long_arg) when "W;"
Todd C. Miller
2002-12-05
Reorganize this so that getopt_only_only() works correctly.
Todd C. Miller
2002-12-03
Whoops, add missing #ifdef REPLACE_GETOPT
Todd C. Miller
2002-12-03
GNU-like getopt_long() from NetBSD with changes by me to support
Todd C. Miller