summaryrefslogtreecommitdiff
path: root/main/getopt.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused Git attributes identPeter Kokot2018-07-251-2/+0
| | | | | | | | | | | | | | | The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore.
* year++Xinchen Hui2018-01-021-1/+1
|
* Update copyright headers to 2017Sammy Kaye Powers2017-01-021-1/+1
|
* Fixed compilation warningsDmitry Stogov2016-06-211-1/+1
|
* Merge branch 'PHP-5.6' into PHP-7.0Lior Kaplan2016-01-011-1/+1
|\ | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016)
| * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-011-1/+1
| |
| * bump yearXinchen Hui2015-01-151-1/+1
| |
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | Merge branch 'PHP-5.6'Stanislav Malyshev2014-10-271-0/+8
|\ \ | |/ | | | | | | * PHP-5.6: Fix bug #68095 - invalid read in php_getopt()
| * Fix bug #68095 - invalid read in php_getopt()Stanislav Malyshev2014-10-271-0/+8
| | | | | | | | | | It's a hacky solution and incomplete, but I don't see other way without refactoring the whole getopt protocol.
| * Bump yearXinchen Hui2014-01-031-1/+1
| |
* | fix datatype mismatch warningsAnatol Belski2014-10-271-2/+2
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
| |
* | Fixed compilaation warningsDmitry Stogov2014-04-221-1/+1
| |
* | Bump yearXinchen Hui2014-01-031-1/+1
|/
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* final fix for long opts in getopt() Antony Dovgal2010-04-151-11/+7
|
* discard first TWO symbols of a long argumentAntony Dovgal2010-04-141-1/+1
|
* make sure the actual length of the argument passed matches theAntony Dovgal2010-04-081-3/+9
| | | | | | length of the argument declared this fixes things like `php --zend-exten=1` or `php-fpm --fpm-con=conf`
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: - Add support for optional valuesHannes Magnusson2007-11-211-6/+27
| | | | | MFH: - Add support for = as seperator
* MFH:- Added common getopt implementation to core.Jani Taskinen2007-10-011-0/+176
MFH:- Added long-option feature to getopt(). MFH:- Made getopt() available on win32 systems. MFH: Patch by: David Soria Parra <dsp@php.net> [DOC]: These changes will be available from 5.3+ # Note: Fixed also tests and synced basic_functions.c with HEAD.