]> granicus.if.org Git - php/commitdiff
Fix proto documents for new global functions
authorTyson Andre <tysonandre775@hotmail.com>
Sun, 5 Nov 2017 18:01:44 +0000 (10:01 -0800)
committerJoe Watkins <krakjoe@php.net>
Mon, 6 Nov 2017 07:24:42 +0000 (07:24 +0000)
See NEWS and UPGRADING (or arginfo/implementation) for details.

ext/mbstring/mbstring.c
ext/standard/streamsfuncs.c

index d2e778bff53e5558c81b52b8f098f7de5a8e8133..f963ba6d97497318dda4623c96b64520bd68f130 100644 (file)
@@ -5109,7 +5109,7 @@ static inline zend_long php_mb_ord(const char* str, size_t str_len, const char*
 }
 
 
-/* {{{ proto bool mb_ord([string str[, string encoding]]) */
+/* {{{ proto int|false mb_ord([string str[, string encoding]]) */
 PHP_FUNCTION(mb_ord)
 {
        char* str;
@@ -5233,7 +5233,7 @@ static inline char* php_mb_chr(zend_long cp, const char* enc, size_t *output_len
 }
 
 
-/* {{{ proto bool mb_ord([int cp[, string encoding]]) */
+/* {{{ proto string|false mb_chr([int cp[, string encoding]]) */
 PHP_FUNCTION(mb_chr)
 {
        zend_long cp;
@@ -5268,7 +5268,7 @@ static inline char* php_mb_scrub(const char* str, size_t str_len, const char* en
 }
 
 
-/* {{{ proto bool mb_scrub([string str[, string encoding]]) */
+/* {{{ proto string|false mb_scrub([string str[, string encoding]]) */
 PHP_FUNCTION(mb_scrub)
 {
        char* str;
index 1c0c07b79beb3648ef310f15dda8b298057ce03e..34a5d974954659f0be572042d6ddbc12678fffcf 100644 (file)
@@ -1620,7 +1620,7 @@ PHP_FUNCTION(stream_supports_lock)
        RETURN_TRUE;
 }
 
-/* {{{ proto proto stream_isatty(resource stream)
+/* {{{ proto bool stream_isatty(resource stream)
 Check if a stream is a TTY.
 */
 PHP_FUNCTION(stream_isatty)
@@ -1658,7 +1658,7 @@ PHP_FUNCTION(stream_isatty)
 }
 
 #ifdef PHP_WIN32
-/* {{{ proto proto sapi_windows_vt100_support(resource stream[, bool enable])
+/* {{{ proto bool sapi_windows_vt100_support(resource stream[, bool enable])
    Get or set VT100 support for the specified stream associated to an
    output buffer of a Windows console.
 */