From 1231a3e473b6f8a1ba7831ac1e47bab846241528 Mon Sep 17 00:00:00 2001 From: Egon Schmid Date: Sun, 9 Jul 2000 19:33:19 +0000 Subject: [PATCH] Fixed other protos. --- ext/standard/string.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.50.1