summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorEgon Schmid <eschmid@php.net>2000-08-06 14:36:10 +0000
committerEgon Schmid <eschmid@php.net>2000-08-06 14:36:10 +0000
commit868e3b1db8edd448c1b327d3549697d987b635f5 (patch)
treee1e71f351a1656baea73b4d0e072399f623af4fc /ext
parent4e5946adf742bdf609c93e0627716c2076c1d9cd (diff)
downloadphp-git-868e3b1db8edd448c1b327d3549697d987b635f5.tar.gz
Changed some protos.
Diffstat (limited to 'ext')
-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 62d81e4bf5..0d1862710b 100644
--- a/ext/standard/string.c
+++ b/ext/standard/string.c
@@ -228,7 +228,7 @@ PHP_FUNCTION(ltrim)
/* {{{ proto string wordwrap(string str [, int width [, string break]])
- * Wrap buffer to selected number of characters using string break char */
+ Wrap buffer to selected number of characters using string break char */
PHP_FUNCTION(wordwrap)
{
pval **ptext, **plinelength, **pbreakchar;
@@ -1634,7 +1634,7 @@ PHPAPI void php_stripslashes(char *str, int *len)
}
/* {{{ proto string addcslashes(string str, string charlist)
- Escape all chars mentioned in charlist with backslash. It creates octal representations if asked to backslash characters with 8th bit set or with ASCII<32 (except '\n', '\r', '\t' etc...). */
+ Escape all chars mentioned in charlist with backslash. It creates octal representations if asked to backslash characters with 8th bit set or with ASCII<32 (except '\n', '\r', '\t' etc...) */
PHP_FUNCTION(addcslashes)
{
zval **str, **what;
@@ -2687,7 +2687,7 @@ PHP_FUNCTION(strnatcasecmp)
/* {{{ proto int substr_count(string haystack, string needle)
- Returns the number of times a substring occurs in the string. */
+ Returns the number of times a substring occurs in the string */
PHP_FUNCTION(substr_count)
{
zval **haystack, **needle;