summaryrefslogtreecommitdiff
path: root/ext/standard/levenshtein.c
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* 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: syncJani Taskinen2007-11-061-77/+69
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* remove redundant error messageAntony Dovgal2006-11-211-1/+1
| | | | | add test by <zoe dot slattery at googlemail dot com>
* Updated protos & vim foldingHannes Magnusson2006-06-261-1/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* Removed unneeded checks around Zend allocation macros.Ilia Alshanetsky2004-06-201-7/+2
|
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* emalloc -> safe_emallocIlia Alshanetsky2003-08-111-2/+2
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Eliminate some TSRMLS_FETCH() calls. Tested with Win32 build of SAPI/CGI and ↵Sebastian Bergmann2003-03-251-4/+2
| | | | SAPI/CLI on Win32.
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* -php_error -> php_error_docrefMarcus Boerger2002-12-051-3/+5
| | | | | -removed some cases where emalloc result was tested
* email address changeHartmut Holzgraefe2002-11-251-1/+1
|
* php_error_docrefMarcus Boerger2002-08-241-1/+1
| | | | | #New conversion available at: http://docref.txt.marcus-boerger.de
* Unify error messagesDerick Rethans2002-07-081-1/+1
|
* fix and regression test for Bug #16473Hartmut Holzgraefe2002-04-071-14/+12
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* Converting to use new parameter parsing API.Andrei Zmievski2001-10-191-12/+7
|
* 2nd phase in back-substitution those macro'sJeroen van Wolffelaar2001-09-251-6/+6
| | | | | I've got pretty much everything now...
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-4/+4
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* WhitespaceZeev Suraski2001-08-111-11/+11
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-3/+15
|
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* enforce lenght limit and catch out-ouf-memory conditionsHartmut Holzgraefe2000-12-141-4/+14
|
* levenshtein() fixed, regression tests added (bug id #6562 and #7368)Hartmut Holzgraefe2000-12-131-155/+43
| | | | | # fallback to unoptimized version for 4.0.4 release
* Cleaning up some messSascha Schumann2000-08-211-2/+2
|
* "undefined function" error message will now suggest similar namedHartmut Holzgraefe2000-08-011-1/+1
| | | | | functions as jikes compiler for java does (typo protection)
* typo fixHartmut Holzgraefe2000-06-161-1/+1
|
* C++ // comments are evil ...Hartmut Holzgraefe2000-06-161-15/+147
|
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-1/+1
|
* @ Fixed min()/max() segfault. (Andrei)Andrei Zmievski2000-05-241-1/+2
|
* one little unimportant detail (cut&paste is evil :)Hartmut Holzgraefe2000-05-231-1/+1
|
* a little less optimized, but no dirty tricks anymoreHartmut Holzgraefe2000-05-231-11/+5
|
* Make calc_levdist static and fix pointer swapping.Sascha Schumann2000-05-231-3/+11
|
* - English fix.Andi Gutmans2000-05-231-1/+1
|
* name changed from levdist() to levenshtein()Hartmut Holzgraefe2000-05-231-3/+3
| | | | | (although i bet we'll get a levenstein() alias some day)
* added function "int levdist(string str1, string str2)"Hartmut Holzgraefe2000-05-231-0/+117
that will calculate the Levenshtein distance between two strings (faster and possibly more accurate than similar_text())