1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 01:18:19 +02:00

Sorry, two lines are enough.

This commit is contained in:
Egon Schmid
2001-01-09 15:53:09 +00:00
parent 6aef38f590
commit 8d5d20500b
+3 -6
View File
@@ -148,8 +148,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
*/
Returns str converted to the out_charset character set */
PHP_FUNCTION(iconv)
{
zval **in_charset, **out_charset, **in_buffer;
@@ -175,8 +174,7 @@ PHP_FUNCTION(iconv)
}
/* {{{ proto string ob_iconv_handler(string contents)
Returns str in output buffer converted to the iconv.output_encoding character set
*/
Returns str in output buffer converted to the iconv.output_encoding character set */
PHP_FUNCTION(ob_iconv_handler)
{
int coding;
@@ -201,8 +199,7 @@ PHP_FUNCTION(ob_iconv_handler)
}
/* {{{ proto bool iconv_set_encoding(string int_charset, string out_charset)
Sets internal encoding and output encoding for ob_iconv_handler()
*/
Sets internal encoding and output encoding for ob_iconv_handler() */
PHP_FUNCTION(iconv_set_encoding)
{
zval **int_charset, **out_charset;