From: Egon Schmid Date: Sun, 9 Jul 2000 19:33:19 +0000 (+0000) Subject: Fixed other protos. X-Git-Tag: PRE_FILE_COMPILE_API_CHANGE~338 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1231a3e473b6f8a1ba7831ac1e47bab846241528;p=php Fixed other protos. --- diff --git a/ext/standard/string.c b/ext/standard/string.c index f651c868bd..333bc1f862 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -773,7 +773,7 @@ PHP_FUNCTION(strpos) /* }}} */ /* {{{ proto int strrpos(string haystack, string needle) - Find the last occurrence of a character in a string within another */ + Find position of last occurrence of a character in a string within another */ PHP_FUNCTION(strrpos) { zval **haystack, **needle; @@ -2681,8 +2681,8 @@ PHP_FUNCTION(str_pad) /* }}} */ -/* {{{ proto mixed sscanf(string str,string format, ...) - implements an ANSI compatible sscanf. */ +/* {{{ proto mixed sscanf(string str, string format [, string ...]) + Implements an ANSI C compatible sscanf */ PHP_FUNCTION(sscanf) { zval **format;