moriyoshi Thu Mar 27 22:38:13 2003 EDT
Modified files:
/php4/ext/mbstring mbstring.c
Log:
Removed redundant aliases & CS fix.
Index: php4/ext/mbstring/mbstring.c
diff -u php4/ext/mbstring/mbstring.c:1.168 php4/ext/mbstring/mbstring.c:1.169
--- php4/ext/mbstring/mbstring.c:1.168 Fri Mar 7 00:15:16 2003
+++ php4/ext/mbstring/mbstring.c Thu Mar 27 22:38:13 2003
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: mbstring.c,v 1.168 2003/03/07 05:15:16 sniper Exp $ */
+/* $Id: mbstring.c,v 1.169 2003/03/28 03:38:13 moriyoshi Exp $ */
/*
* PHP4 Multibyte String module "mbstring"
@@ -188,49 +188,36 @@
/* {{{ function_entry mbstring_functions[] */
function_entry mbstring_functions[] = {
- PHP_FE(mb_convert_case, NULL)
- PHP_FE(mb_strtoupper, NULL)
- PHP_FE(mb_strtolower, NULL)
- PHP_FE(mb_language, NULL)
- PHP_FE(mb_internal_encoding, NULL)
- PHP_FE(mb_http_input, NULL)
+ PHP_FE(mb_convert_case, NULL)
+ PHP_FE(mb_strtoupper, NULL)
+ PHP_FE(mb_strtolower, NULL)
+ PHP_FE(mb_language, NULL)
+ PHP_FE(mb_internal_encoding, NULL)
+ PHP_FE(mb_http_input, NULL)
PHP_FE(mb_http_output, NULL)
PHP_FE(mb_detect_order, NULL)
PHP_FE(mb_substitute_character, NULL)
PHP_FE(mb_parse_str, (unsigned char *)second_args_force_ref)
- PHP_FE(mb_output_handler, NULL)
+ PHP_FE(mb_output_handler, NULL)
PHP_FE(mb_preferred_mime_name, NULL)
- PHP_FE(mb_strlen, NULL)
- PHP_FE(mb_strpos, NULL)
+ PHP_FE(mb_strlen, NULL)
+ PHP_FE(mb_strpos, NULL)
PHP_FE(mb_strrpos, NULL)
PHP_FE(mb_substr_count, NULL)
- PHP_FE(mb_substr, NULL)
- PHP_FE(mb_strcut, NULL)
+ PHP_FE(mb_substr, NULL)
+ PHP_FE(mb_strcut, NULL)
PHP_FE(mb_strwidth, NULL)
- PHP_FE(mb_strimwidth, NULL)
+ PHP_FE(mb_strimwidth, NULL)
PHP_FE(mb_convert_encoding, NULL)
PHP_FE(mb_detect_encoding, NULL)
PHP_FE(mb_convert_kana, NULL)
- PHP_FE(mb_encode_mimeheader, NULL)
- PHP_FE(mb_decode_mimeheader, NULL)
- PHP_FE(mb_convert_variables, (unsigned char
*)third_and_rest_force_ref)
- PHP_FE(mb_encode_numericentity, NULL)
- PHP_FE(mb_decode_numericentity, NULL)
- PHP_FE(mb_send_mail, NULL)
- PHP_FE(mb_get_info, NULL)
- PHP_FALIAS(mbstrlen, mb_strlen, NULL)
- PHP_FALIAS(mbstrpos, mb_strpos, NULL)
- PHP_FALIAS(mbstrrpos, mb_strrpos, NULL)
- PHP_FALIAS(mbsubstr, mb_substr, NULL)
- PHP_FALIAS(mbstrcut, mb_strcut, NULL)
- PHP_FALIAS(i18n_internal_encoding, mb_internal_encoding, NULL)
- PHP_FALIAS(i18n_http_input, mb_http_input, NULL)
- PHP_FALIAS(i18n_http_output, mb_http_output, NULL)
- PHP_FALIAS(i18n_convert, mb_convert_encoding, NULL)
- PHP_FALIAS(i18n_discover_encoding, mb_detect_encoding, NULL)
- PHP_FALIAS(i18n_mime_header_encode, mb_encode_mimeheader, NULL)
- PHP_FALIAS(i18n_mime_header_decode, mb_decode_mimeheader, NULL)
- PHP_FALIAS(i18n_ja_jp_hantozen, mb_convert_kana, NULL)
+ PHP_FE(mb_encode_mimeheader, NULL)
+ PHP_FE(mb_decode_mimeheader, NULL)
+ PHP_FE(mb_convert_variables, (unsigned char *)third_and_rest_force_ref)
+ PHP_FE(mb_encode_numericentity, NULL)
+ PHP_FE(mb_decode_numericentity, NULL)
+ PHP_FE(mb_send_mail, NULL)
+ PHP_FE(mb_get_info, NULL)
#if HAVE_MBREGEX
PHP_MBREGEX_FUNCTION_ENTRIES
#endif
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php