Remove proto comments from C files

Closes GH-5758
This commit is contained in:
Max Semenik 2020-07-01 16:32:55 +03:00 committed by Máté Kocsis
parent 4757998650
commit 2b5de6f839
No known key found for this signature in database
GPG key ID: FD055E41728BF310
234 changed files with 3892 additions and 8084 deletions

View file

@ -892,8 +892,7 @@ static PHP_MINFO_FUNCTION(libxml)
}
/* }}} */
/* {{{ proto void libxml_set_streams_context(resource streams_context)
Set the streams context for the next libxml document load or write */
/* {{{ Set the streams context for the next libxml document load or write */
PHP_FUNCTION(libxml_set_streams_context)
{
zval *arg;
@ -910,8 +909,7 @@ PHP_FUNCTION(libxml_set_streams_context)
}
/* }}} */
/* {{{ proto bool libxml_use_internal_errors([boolean use_errors])
Disable libxml errors and allow user to fetch error information as needed */
/* {{{ Disable libxml errors and allow user to fetch error information as needed */
PHP_FUNCTION(libxml_use_internal_errors)
{
xmlStructuredErrorFunc current_handler;
@ -951,8 +949,7 @@ PHP_FUNCTION(libxml_use_internal_errors)
}
/* }}} */
/* {{{ proto object libxml_get_last_error()
Retrieve last error from libxml */
/* {{{ Retrieve last error from libxml */
PHP_FUNCTION(libxml_get_last_error)
{
xmlErrorPtr error;
@ -983,8 +980,7 @@ PHP_FUNCTION(libxml_get_last_error)
}
/* }}} */
/* {{{ proto object libxml_get_errors()
Retrieve array of errors */
/* {{{ Retrieve array of errors */
PHP_FUNCTION(libxml_get_errors)
{
@ -1025,8 +1021,7 @@ PHP_FUNCTION(libxml_get_errors)
}
/* }}} */
/* {{{ proto void libxml_clear_errors()
Clear last error from libxml */
/* {{{ Clear last error from libxml */
PHP_FUNCTION(libxml_clear_errors)
{
ZEND_PARSE_PARAMETERS_NONE();
@ -1046,8 +1041,7 @@ PHP_LIBXML_API zend_bool php_libxml_disable_entity_loader(zend_bool disable) /*
return old;
} /* }}} */
/* {{{ proto bool libxml_disable_entity_loader([boolean disable])
Disable/Enable ability to load external entities */
/* {{{ Disable/Enable ability to load external entities */
PHP_FUNCTION(libxml_disable_entity_loader)
{
zend_bool disable = 1;
@ -1061,8 +1055,7 @@ PHP_FUNCTION(libxml_disable_entity_loader)
}
/* }}} */
/* {{{ proto void libxml_set_external_entity_loader(callback resolver_function)
Changes the default external entity loader */
/* {{{ Changes the default external entity loader */
PHP_FUNCTION(libxml_set_external_entity_loader)
{
zend_fcall_info fci;