diff options
author | Rui Hirokawa <hirokawa@php.net> | 2001-05-01 23:44:20 +0000 |
---|---|---|
committer | Rui Hirokawa <hirokawa@php.net> | 2001-05-01 23:44:20 +0000 |
commit | f34bad2d4fae2958e30a1e4d8fb4f4be29755643 (patch) | |
tree | aec7f5cd154945ff47144891122aeea0dca44747 /ext/mbstring/mbstring.h | |
parent | d0dac28cc229ead43520d3a468b52cb1aa7be509 (diff) | |
download | php-git-f34bad2d4fae2958e30a1e4d8fb4f4be29755643.tar.gz |
modified some function name in ext/mbstring based on naming convension and mbstr_http_input() implemented.
Diffstat (limited to 'ext/mbstring/mbstring.h')
-rw-r--r-- | ext/mbstring/mbstring.h | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/ext/mbstring/mbstring.h b/ext/mbstring/mbstring.h index 478fafd7e6..0fe06b5ccc 100644 --- a/ext/mbstring/mbstring.h +++ b/ext/mbstring/mbstring.h @@ -65,15 +65,15 @@ extern PHP_RSHUTDOWN_FUNCTION(mbstring); PHP_MINFO_FUNCTION(mbstring); /* php function registration */ -PHP_FUNCTION(mbstr_language); -PHP_FUNCTION(mbstr_internal_encoding); -PHP_FUNCTION(mbstr_http_input); -PHP_FUNCTION(mbstr_http_output); -PHP_FUNCTION(mbstr_detect_order); -PHP_FUNCTION(mbstr_substitute_character); -PHP_FUNCTION(mbstr_preferred_mime_name); -PHP_FUNCTION(mbstr_gpc_handler); -PHP_FUNCTION(mbstr_output_handler); +PHP_FUNCTION(mb_language); +PHP_FUNCTION(mb_internal_encoding); +PHP_FUNCTION(mb_http_input); +PHP_FUNCTION(mb_http_output); +PHP_FUNCTION(mb_detect_order); +PHP_FUNCTION(mb_substitute_character); +PHP_FUNCTION(mb_preferred_mime_name); +PHP_FUNCTION(mb_gpc_handler); +PHP_FUNCTION(mb_output_handler); PHP_FUNCTION(mb_strlen); PHP_FUNCTION(mb_strpos); PHP_FUNCTION(mb_strrpos); @@ -81,15 +81,15 @@ PHP_FUNCTION(mb_substr); PHP_FUNCTION(mb_strcut); PHP_FUNCTION(mb_strwidth); PHP_FUNCTION(mb_strimwidth); -PHP_FUNCTION(mbstr_convert_encoding); -PHP_FUNCTION(mbstr_detect_encoding); -PHP_FUNCTION(mbstr_convert_kana); -PHP_FUNCTION(mbstr_encode_mimeheader); -PHP_FUNCTION(mbstr_decode_mimeheader); -PHP_FUNCTION(mbstr_convert_variables); -PHP_FUNCTION(mbstr_encode_numericentity); -PHP_FUNCTION(mbstr_decode_numericentity); -PHP_FUNCTION(mbstr_send_mail); +PHP_FUNCTION(mb_convert_encoding); +PHP_FUNCTION(mb_detect_encoding); +PHP_FUNCTION(mb_convert_kana); +PHP_FUNCTION(mb_encode_mimeheader); +PHP_FUNCTION(mb_decode_mimeheader); +PHP_FUNCTION(mb_convert_variables); +PHP_FUNCTION(mb_encode_numericentity); +PHP_FUNCTION(mb_decode_numericentity); +PHP_FUNCTION(mb_send_mail); ZEND_BEGIN_MODULE_GLOBALS(mbstring) int language; @@ -102,6 +102,7 @@ ZEND_BEGIN_MODULE_GLOBALS(mbstring) int http_input_identify_get; int http_input_identify_post; int http_input_identify_cookie; + int http_input_identify_string; int *http_input_list; int http_input_list_size; int *detect_order_list; |