summaryrefslogtreecommitdiff
path: root/ext/skeleton/create_stubs
Commit message (Collapse)AuthorAgeFilesLines
* Fix the most obvious issues here.Rasmus Lerdorf2015-01-201-2/+2
| | | | There are other problems though
* Replace $Revision$ with $Id$ in keyword expansion enable filesDavid Soria Parra2012-03-201-1/+1
|
* MFH: New way for check void parametersFelipe Pena2008-03-101-1/+1
|
* ok, re-adding this mostly un-maintained awk/sed/sh nightmare for now ...Hartmut Holzgraefe2003-06-291-0/+289
|
* ext_skel is no more, and ext_skel_ng is moving to PEAR::PECL_GenHartmut Holzgraefe2003-06-291-289/+0
|
* some awk installations need this escpaed ... BUG #24314 fixedHartmut Holzgraefe2003-06-251-1/+1
|
* Check for uppercase function names in .def files - patch from David VinerRasmus Lerdorf2002-09-031-0/+7
|
* typo fixHartmut Holzgraefe2001-12-181-1/+1
|
* improved xml generatioimproved xml generationHartmut Holzgraefe2001-12-151-13/+20
|
* editor preferences for XML files updatedHartmut Holzgraefe2001-12-121-1/+5
|
* Add TSRMLS_CCRasmus Lerdorf2001-08-131-1/+1
|
* Faster wrong_param check for functions that take no parametersRasmus Lerdorf2001-08-131-6/+7
|
* Save spec_opt for each function.Andrei Zmievski2001-08-121-1/+2
|
* Fix it up a bit.Andrei Zmievski2001-08-121-13/+14
|
* Oops, missing () thereRasmus Lerdorf2001-08-121-1/+1
|
* Changed ext_skel to use zend_parse_parameters() for argument parsing inAndrei Zmievski2001-08-111-109/+39
| | | | | | | the generated functions. This cuts down on code a lot. The point before this change was tagged BEFORE_PARAM_PARSING_CHANGE.
* Fixed a bunch of problems hereRasmus Lerdorf2001-08-081-43/+47
|
* We no longer need any FETCH's for internal functionsZeev Suraski2001-08-021-3/+2
|
* TSRM fix for ext_skel - probably more neededRasmus Lerdorf2001-08-021-1/+1
|
* BeautifyZeev Suraski2001-08-021-2/+2
|
* a backslash was missing (+ whitespace)Hartmut Holzgraefe2001-04-251-4/+4
|
* support for short comments was added to ext_skel proto filesHartmut Holzgraefe2000-10-311-2/+7
| | | | | | theese will be used in proto comments in the source and as <refpurpose> information in the XML docs
* added a regression test skeleton fileHartmut Holzgraefe2000-10-231-1/+5
| | | | | plus a partintro in xml documentation template
* <funcprototype> added to xml generationHartmut Holzgraefe2000-06-241-1/+3
|
* - Missed one if() and cosmetic changes.Jouni Ahto2000-06-171-22/+20
|
* - Fixed incorrect code generated when all parameters are optional.Jouni Ahto2000-06-151-49/+194
| | | | | | | | | | | | - Fixed handling of grouped optional parameters. - Added an option to generate xml documentation. - Added an option not to be nice and helpful and create all kinds of comments and testing functions. - Added on option to create function stubs only. - Added options --assing-params and --string-lens that change the generated code. - Updated documentation.
* - Avoid generating unnecessary switch statemets.Jouni Ahto2000-06-111-26/+57
| | | | | | | | - Add a test if argument was given (if it is optional) before trying to fetch a resource and a note that something should be done if it wasn't. - Some cosmetic fixes in the code generated. - Some other small fixes in the code generated, already forgotten.
* - Fix incorrect code creation when an optional argument is resource type.Jouni Ahto2000-06-101-9/+19
|
* - Fix typos, add default case to switch and other small things.Jouni Ahto2000-06-101-16/+19
|
* - Automatically generate C code to handle arguments passed to a PHP functionJouni Ahto2000-06-101-0/+137
based on function proto. # Very cool! Try yourself, put for example the following line in file funcs: # bool drawtext(string text, resource font, int x, int y [, resource color]) # and then run ./ext_skel foobar /full/path/to/funcs and then look at # foobar.c...