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/normalizer/normalizer_normalize.c | |
parent | 47579986504022d3eab38e24fff5861d5e4eadad (diff) | |
download | php-git-2b5de6f839feea0ae1d5289d59dd7f159fcdcc8c.tar.gz |
Remove proto comments from C files
Closes GH-5758
Diffstat (limited to 'ext/intl/normalizer/normalizer_normalize.c')
-rw-r--r-- | ext/intl/normalizer/normalizer_normalize.c | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/ext/intl/normalizer/normalizer_normalize.c b/ext/intl/normalizer/normalizer_normalize.c index 0672631bcd..f712049ea3 100644 --- a/ext/intl/normalizer/normalizer_normalize.c +++ b/ext/intl/normalizer/normalizer_normalize.c @@ -76,11 +76,7 @@ static UBool intl_is_normalized(zend_long form, const UChar *uinput, int32_t uin }/*}}}*/ #endif -/* {{{ proto string Normalizer::normalize( string $input [, string $form = FORM_C] ) - * Normalize a string. }}} */ -/* {{{ proto string normalizer_normalize( string $input [, string $form = FORM_C] ) - * Normalize a string. - */ +/* {{{ Normalize a string. */ PHP_FUNCTION( normalizer_normalize ) { char* input = NULL; @@ -219,11 +215,7 @@ PHP_FUNCTION( normalizer_normalize ) } /* }}} */ -/* {{{ proto bool Normalizer::isNormalized( string $input [, string $form = FORM_C] ) - * Test if a string is in a given normalization form. }}} */ -/* {{{ proto bool normalizer_is_normalized( string $input [, string $form = FORM_C] ) - * Test if a string is in a given normalization form. - */ +/* {{{ Test if a string is in a given normalization form. */ PHP_FUNCTION( normalizer_is_normalized ) { char* input = NULL; @@ -306,11 +298,7 @@ PHP_FUNCTION( normalizer_is_normalized ) } /* }}} */ -/* {{{ proto string|null Normalizer::getRawDecomposition( string $input [, string $form = FORM_C] ) - * Returns the Decomposition_Mapping property for the given UTF-8 encoded code point. }}} */ -/* {{{ proto string|null normalizer_get_raw_decomposition( string $input [, string $form = FORM_C] ) - * Returns the Decomposition_Mapping property for the given UTF-8 encoded code point. - */ +/* {{{ Returns the Decomposition_Mapping property for the given UTF-8 encoded code point. */ #if U_ICU_VERSION_MAJOR_NUM >= 56 PHP_FUNCTION( normalizer_get_raw_decomposition ) { |