]> granicus.if.org Git - php/commitdiff
Protos fixed.
authorEgon Schmid <eschmid@php.net>
Wed, 26 Jul 2000 11:43:01 +0000 (11:43 +0000)
committerEgon Schmid <eschmid@php.net>
Wed, 26 Jul 2000 11:43:01 +0000 (11:43 +0000)
ext/standard/basic_functions.c
ext/standard/string.c

index c5552e3180f153e9e48d56d96412241bf7893de6..53acc21c977596cdab2d9a4a0f86877898baf226 100644 (file)
@@ -777,7 +777,7 @@ PHP_MINFO_FUNCTION(basic)
 }
 
 /* {{{ proto int ip2long(string ip_address)
-   Converts a string containing an (Ipv4) Internet Protocol dotted address into a proper address.  */
+   Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address */
 PHP_FUNCTION(ip2long)
 {
        zval **str;
@@ -793,7 +793,7 @@ PHP_FUNCTION(ip2long)
 /* }}} */
 
 /* {{{ proto string long2ip(int proper_address)
-   Converts an (Ipv4) Internet network address into a string in Internet standard dotted format. */
+   Converts an (IPv4) Internet network address into a string in Internet standard dotted format */
 PHP_FUNCTION(long2ip)
 {
        zval **num;
index cebd8411388e6a7e30caf904ade2026a8b8c167e..64430c819eddda739d513e3a4bf091b942883c6d 100644 (file)
@@ -227,8 +227,8 @@ PHP_FUNCTION(ltrim)
 /* }}} */
 
 
-/* {{{ proto string wordwrap(string str[, int width[, string break]])
- * wrap buffer to selected number of characters using string break char */
+/* {{{ proto string wordwrap(string str [, int width [, string break]])
+ * Wrap buffer to selected number of characters using string break char */
 PHP_FUNCTION(wordwrap)
 {
        pval **ptext, **plinelength, **pbreakchar;
@@ -2322,7 +2322,7 @@ PHP_FUNCTION(setlocale)
 /* }}} */
 
 /* {{{ proto void parse_str(string encoded_string)
-   Parses GET/POST/COOKIE data and sets global variables. */
+   Parses GET/POST/COOKIE data and sets global variables */
 PHP_FUNCTION(parse_str)
 {
        zval **arg;