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

@ -555,8 +555,7 @@ PW32CP const struct php_win32_cp *php_win32_cp_cli_do_restore(DWORD id)
/* Userspace functions, see basic_functions.* for arginfo and decls. */
/* {{{ proto bool sapi_windows_cp_set(int cp)
* Set process codepage. */
/* {{{ Set process codepage. */
PHP_FUNCTION(sapi_windows_cp_set)
{
zend_long id;
@ -585,8 +584,7 @@ PHP_FUNCTION(sapi_windows_cp_set)
}
/* }}} */
/* {{{ proto int sapi_windows_cp_get([string kind])
* Get process codepage. */
/* {{{ Get process codepage. */
PHP_FUNCTION(sapi_windows_cp_get)
{
char *kind;
@ -608,8 +606,7 @@ PHP_FUNCTION(sapi_windows_cp_get)
/* }}} */
/* {{{ proto bool sapi_windows_cp_is_utf8(void)
* Indicates whether the codepage is UTF-8 compatible. */
/* {{{ Indicates whether the codepage is UTF-8 compatible. */
PHP_FUNCTION(sapi_windows_cp_is_utf8)
{
if (zend_parse_parameters_none() == FAILURE) {
@ -620,8 +617,7 @@ PHP_FUNCTION(sapi_windows_cp_is_utf8)
}
/* }}} */
/* {{{ proto string sapi_windows_cp_conv(int|string in_codepage, int|string out_codepage, string subject)
* Convert string from one codepage to another. */
/* {{{ Convert string from one codepage to another. */
PHP_FUNCTION(sapi_windows_cp_conv)
{
char *ret;