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/msgformat/msgformat_parse.c | |
parent | 47579986504022d3eab38e24fff5861d5e4eadad (diff) | |
download | php-git-2b5de6f839feea0ae1d5289d59dd7f159fcdcc8c.tar.gz |
Remove proto comments from C files
Closes GH-5758
Diffstat (limited to 'ext/intl/msgformat/msgformat_parse.c')
-rw-r--r-- | ext/intl/msgformat/msgformat_parse.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/ext/intl/msgformat/msgformat_parse.c b/ext/intl/msgformat/msgformat_parse.c index 70fbf25395..b8f253c373 100644 --- a/ext/intl/msgformat/msgformat_parse.c +++ b/ext/intl/msgformat/msgformat_parse.c @@ -50,11 +50,7 @@ static void msgfmt_do_parse(MessageFormatter_object *mfo, char *source, size_t s } /* }}} */ -/* {{{ proto array MessageFormatter::parse( string $source ) - * Parse a message }}} */ -/* {{{ proto array msgfmt_parse( MessageFormatter $nf, string $source ) - * Parse a message. - */ +/* {{{ Parse a message */ PHP_FUNCTION( msgfmt_parse ) { char *source; @@ -76,11 +72,7 @@ PHP_FUNCTION( msgfmt_parse ) } /* }}} */ -/* {{{ proto array MessageFormatter::formatMessage( string $locale, string $pattern, string $source ) - * Parse a message. }}} */ -/* {{{ proto array msgfmt_parse_message( string $locale, string $pattern, string $source ) - * Parse a message. - */ +/* {{{ Parse a message. */ PHP_FUNCTION( msgfmt_parse_message ) { UChar *spattern = NULL; |