diff options
author | Max Semenik <maxsem.wiki@gmail.com> | 2020-07-01 16:32:55 +0300 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-07-06 21:13:34 +0200 |
commit | 2b5de6f839feea0ae1d5289d59dd7f159fcdcc8c (patch) | |
tree | f23a5c00a96f30a62ddcf626b4c6a6d53809d14f /ext/intl/php_intl.c | |
parent | 47579986504022d3eab38e24fff5861d5e4eadad (diff) | |
download | php-git-2b5de6f839feea0ae1d5289d59dd7f159fcdcc8c.tar.gz |
Remove proto comments from C files
Closes GH-5758
Diffstat (limited to 'ext/intl/php_intl.c')
-rw-r--r-- | ext/intl/php_intl.c | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/ext/intl/php_intl.c b/ext/intl/php_intl.c index 89eb9161b6..2b0b19be9b 100644 --- a/ext/intl/php_intl.c +++ b/ext/intl/php_intl.c @@ -141,8 +141,7 @@ static PHP_GINIT_FUNCTION(intl) } /* }}} */ -/* {{{ PHP_MINIT_FUNCTION - */ +/* {{{ PHP_MINIT_FUNCTION */ PHP_MINIT_FUNCTION( intl ) { /* For the default locale php.ini setting */ @@ -242,8 +241,7 @@ PHP_MINIT_FUNCTION( intl ) #define EXPLICIT_CLEANUP_ENV_VAR "INTL_EXPLICIT_CLEANUP" -/* {{{ PHP_MSHUTDOWN_FUNCTION - */ +/* {{{ PHP_MSHUTDOWN_FUNCTION */ PHP_MSHUTDOWN_FUNCTION( intl ) { const char *cleanup; @@ -259,16 +257,14 @@ PHP_MSHUTDOWN_FUNCTION( intl ) } /* }}} */ -/* {{{ PHP_RINIT_FUNCTION - */ +/* {{{ PHP_RINIT_FUNCTION */ PHP_RINIT_FUNCTION( intl ) { return SUCCESS; } /* }}} */ -/* {{{ PHP_RSHUTDOWN_FUNCTION - */ +/* {{{ PHP_RSHUTDOWN_FUNCTION */ PHP_RSHUTDOWN_FUNCTION( intl ) { if(!Z_ISUNDEF(INTL_G(current_collator))) { @@ -284,8 +280,7 @@ PHP_RSHUTDOWN_FUNCTION( intl ) } /* }}} */ -/* {{{ PHP_MINFO_FUNCTION - */ +/* {{{ PHP_MINFO_FUNCTION */ PHP_MINFO_FUNCTION( intl ) { #ifndef UCONFIG_NO_FORMATTING |