1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 16:08:35 +02:00
This commit is contained in:
foobar
2001-10-22 02:28:00 +00:00
parent 626c663b26
commit 4fdf886f5c
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -51,7 +51,7 @@
/* {{{ iconv_functions[]
*/
function_entry iconv_functions[] = {
PHP_FE(iconv, NULL)
PHP_NAMED_FE(iconv,php_if_iconv, NULL)
PHP_FE(ob_iconv_handler, NULL)
PHP_FE(iconv_get_encoding, NULL)
PHP_FE(iconv_set_encoding, NULL)
@@ -163,7 +163,7 @@ int php_iconv_string(char *in_p, char **out, char *in_charset, char *out_charset
/* {{{ proto string iconv(string in_charset, string out_charset, string str)
Returns str converted to the out_charset character set */
PHP_FUNCTION(iconv)
PHP_NAMED_FUNCTION(php_if_iconv)
{
zval **in_charset, **out_charset, **in_buffer;
char *out_buffer;
+1 -1
View File
@@ -33,7 +33,7 @@ PHP_MINIT_FUNCTION(miconv);
PHP_MSHUTDOWN_FUNCTION(miconv);
PHP_MINFO_FUNCTION(miconv);
PHP_FUNCTION(iconv);
PHP_NAMED_FUNCTION(php_if_iconv);
PHP_FUNCTION(ob_iconv_handler);
PHP_FUNCTION(iconv_get_encoding);
PHP_FUNCTION(iconv_set_encoding);