summaryrefslogtreecommitdiff
path: root/ext/standard/string.c
diff options
context:
space:
mode:
authorEgon Schmid <eschmid@php.net>2000-07-09 19:33:19 +0000
committerEgon Schmid <eschmid@php.net>2000-07-09 19:33:19 +0000
commit1231a3e473b6f8a1ba7831ac1e47bab846241528 (patch)
tree547a70b77fc6d3f7297fef7928767e85718a35fb /ext/standard/string.c
parent40b31d7487193790fb80af7dc396456b8788bbe5 (diff)
downloadphp-git-1231a3e473b6f8a1ba7831ac1e47bab846241528.tar.gz
Fixed other protos.
Diffstat (limited to 'ext/standard/string.c')
-rw-r--r--ext/standard/string.c6
1 files 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;