]> granicus.if.org Git - php/commitdiff
More protos.
authorEgon Schmid <eschmid@php.net>
Wed, 23 Feb 2000 16:38:38 +0000 (16:38 +0000)
committerEgon Schmid <eschmid@php.net>
Wed, 23 Feb 2000 16:38:38 +0000 (16:38 +0000)
ext/pcre/php_pcre.c

index fe7e472aa089326f5f64d71c33ac72b32244a76f..1b018f259bbdf1a1e0c7a50356c891594ee8a584 100644 (file)
@@ -499,7 +499,7 @@ static void _pcre_match(INTERNAL_FUNCTION_PARAMETERS, int global)
 /* }}} */
 
 
-/* {{{ proto int preg_match(string pattern, string subject [, array subpatterns ])
+/* {{{ proto int preg_match(string pattern, string subject [, array subpatterns])
    Perform a Perl-style regular expression match */
 PHP_FUNCTION(preg_match)
 {
@@ -508,7 +508,7 @@ PHP_FUNCTION(preg_match)
 /* }}} */
 
 
-/* {{{ proto int preg_match_all(string pattern, string subject, array subpatterns [, int order ])
+/* {{{ proto int preg_match_all(string pattern, string subject, array subpatterns [, int order])
    Perform a Perl-style global regular expression match */
 PHP_FUNCTION(preg_match_all)
 {
@@ -841,7 +841,7 @@ static char *_php_replace_in_subject(zval *regex, zval *replace, zval **subject)
 
 
 /* {{{ proto string preg_replace(string|array regex, string|array replace, string|array subject)
-    Perform Perl-style regular expression replacement */
+   Perform Perl-style regular expression replacement */
 PHP_FUNCTION(preg_replace)
 {
        zval               **regex,
@@ -907,7 +907,7 @@ PHP_FUNCTION(preg_replace)
 
 
 /* {{{ proto array preg_split(string pattern, string subject [, int limit [, int flags]]) 
-    split string into an array using a perl-style regular expression as a delimiter */
+   Split string into an array using a perl-style regular expression as a delimiter */
 PHP_FUNCTION(preg_split)
 {
        zval               **regex,                             /* Regular expression to split by */