summaryrefslogtreecommitdiff
path: root/ext/mbstring
Commit message (Collapse)AuthorAgeFilesLines
* Changed the configure option to be --enable/disablefoobar2002-06-061-2/+2
|
* Makring function declarations match implementations (ZTS compilation)Frank M. Kromann2002-06-011-6/+6
|
* Fixed typo..foobar2002-05-311-1/+1
|
* Fixes some dummy errors (again).Den V. Tsopa2002-05-301-30/+42
|
* Added GB2312 alias for CN-GBDen V. Tsopa2002-05-291-1/+1
|
* @Fixed some dummy errors. (dets)Den V. Tsopa2002-05-291-43/+31
|
* reverted my patch.Rui Hirokawa2002-05-241-9/+7
|
* reverted patch to support iso2022kr.Rui Hirokawa2002-05-245-8/+173
|
* ZTS fixes.Sebastian Bergmann2002-05-211-9/+9
|
* Added russian codepages (koi8-r,cp1251,cp866) support.Den V. Tsopa2002-05-217-108/+482
|
* Range check arguments to mb_strcut().Preston L. Bannister2002-05-161-0/+8
| | | | | Test ext/mbstring/013.phpt causes a hard failure w/o this.
* Proper declaration to suppress compiler warning.Preston L. Bannister2002-05-161-1/+1
|
* added ISO-2022-KR support in mbstring.Rui Hirokawa2002-05-155-2/+324
|
* fixed a initialization bug in euc-tw.Rui Hirokawa2002-05-141-0/+1
|
* Fix this again.Sascha Schumann2002-05-121-1/+1
| | | | | | | | | | | | If you are unsure whether enable or with shall be used, please inquire on the mailing list. WITH is solely for the purpose of pointing to paths and other external entities. Note that the comment has always mentioned "--disable-mbstring" which clearly refers to enable and not with.
* added chinese HZ encoding support. fixed ascii area character conversion ↵Rui Hirokawa2002-05-125-11/+272
| | | | was not work in euc-cn and euc-kr.
* fixed to support --with-mbsting=LANG.Rui Hirokawa2002-05-121-1/+1
|
* Added conversion support from script character encoding to internal ↵Rui Hirokawa2002-05-084-4/+279
| | | | character encoding. This feature is very useful for japanese who uses Shift_JIS encoding because some of characters in Shift_JIS are including '0x5c' and it causes some troubles on Zend parser. This patch is made by Masaki Fujimoto.
* bug fixed in unicode -> cp1252 table.Rui Hirokawa2002-05-052-7/+7
|
* added missing areas on Unicode->CP936 conversion table. added an alias CP932 ↵Rui Hirokawa2002-05-053-33/+88
| | | | on sjis-win.
* Turn misplaced PHP_ARG_WITH into _ENABLESascha Schumann2002-05-041-3/+3
| | | | | and fix --enable-mbstring=shared
* Changed & to &&.Frank M. Kromann2002-05-021-2/+2
|
* Adding missing files to the projectFrank M. Kromann2002-05-021-0/+36
|
* More unused variables.Sebastian Bergmann2002-04-302-6/+6
|
* Fix ZTS build. Remove unused variables.Sebastian Bergmann2002-04-301-4/+4
|
* fixed compile warning with Visual C++.Rui Hirokawa2002-04-302-10/+10
|
* added simplified chinese, traditional chinese, korean support to mbstring. ↵Rui Hirokawa2002-04-3014-9/+26336
| | | | Note that this feature is experimental.
* Adding missing files to projectFrank M. Kromann2002-04-301-0/+12
|
* Improve use of module_globals macrosSascha Schumann2002-04-262-2/+2
|
* Remove unneeded 'return'.Yasuo Ohgaki2002-04-231-1/+0
|
* Fix possible wide char prolem.Yasuo Ohgaki2002-04-231-5/+2
| | | | | | Fix empty output when no conversion is performed. # Derick, this needs to be merged.
* small performance improvement when pass is selected as input encoding.Rui Hirokawa2002-04-211-4/+6
|
* If I don't want mbstring, I also don't want this transparent encodingSascha Schumann2002-04-201-0/+2
| | | | | thingee which caused an undefined reference in main.o.
* Fixed test title (strlen -> mb_strlen)Yasuo Ohgaki2002-04-191-1/+1
|
* Fixed messagesYasuo Ohgaki2002-04-191-4/+4
|
* Enable mbstring by default.Yasuo Ohgaki2002-04-191-29/+15
| | | | | @ mbstring module is enabled by default (Yasuo)
* Fixing Win32 compilation of mbstringFrank M. Kromann2002-04-151-0/+2
|
* fixed error output handler when 'pass' is choosed as output encoding.Rui Hirokawa2002-04-141-0/+4
|
* -new function php_mb_check_encoding_listMarcus Boerger2002-04-122-22/+49
| | | | | -mark module globals as const (thread safety)
* This test should be skipped if(!cgi)Sander Roobol2002-04-121-1/+6
|
* -fix mb_detect_orderMarcus Boerger2002-04-121-10/+42
| | | | | -php_mbstring_parse_encoding_list/array return 0 on any illegal input
* interpret empty to_encoding as encoding not set what results in ↵Marcus Boerger2002-04-111-1/+1
| | | | current_internal_encoding
* fixed a bug which causes crash when charset is not set.Rui Hirokawa2002-04-111-8/+10
|
* Fix ZTS buildYasuo Ohgaki2002-04-111-1/+1
| | | | | | # Please check caller when you add TSRMLS_DC. Especically if it's PHPAPI function... # find . -name "*.c" | xargs grep php_mail
* changed mbstring to make thread safe.Rui Hirokawa2002-04-107-1173/+1186
|
* -fix warningsMarcus Boerger2002-04-073-6/+8
|
* Use get_active_function_name() for error messages.Yasuo Ohgaki2002-04-061-43/+84
|
* include comma separated encoding lists in testMarcus Boerger2002-04-052-0/+20
|
* no space for comma separated encoding listsMarcus Boerger2002-04-051-3/+3
|
* Fixed way of exporing functions. (Need PHPAPI for Win)Yasuo Ohgaki2002-04-052-10/+20
| | | | | | | Fixed if statement format. ("if () stmt;" should be "if () \n {stmt;}") Fixed error message so that appropriate function names are displayed.