diff options
author | Egon Schmid <eschmid@php.net> | 2000-04-18 20:00:21 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2000-04-18 20:00:21 +0000 |
commit | f1c268d79a167484e911e868ae7f4056157bb17a (patch) | |
tree | d9426321dd3a258c3772bfb4e17a8eaf73613542 /main/output.c | |
parent | 43e04d5a773b12e8cb0dadf002a32be983a2f80f (diff) | |
download | php-git-f1c268d79a167484e911e868ae7f4056157bb17a.tar.gz |
Corrected some protos.
Diffstat (limited to 'main/output.c')
-rw-r--r-- | main/output.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/main/output.c b/main/output.c index eb0a07a185..4e71bcc7b7 100644 --- a/main/output.c +++ b/main/output.c @@ -337,7 +337,7 @@ static int php_ub_body_write(const char *str, uint str_length) */ -/* {{{ proto void ob_start() +/* {{{ proto void ob_start(void) Turn on Output Buffering */ PHP_FUNCTION(ob_start) { @@ -346,7 +346,7 @@ PHP_FUNCTION(ob_start) /* }}} */ -/* {{{ proto void ob_end_flush() +/* {{{ proto void ob_end_flush(void) Flush (send) the output buffer, and turn off output buffering */ PHP_FUNCTION(ob_end_flush) { @@ -355,7 +355,7 @@ PHP_FUNCTION(ob_end_flush) /* }}} */ -/* {{{ proto void ob_end_clean() +/* {{{ proto void ob_end_clean(void) Clean (erase) the output buffer, and turn off output buffering */ PHP_FUNCTION(ob_end_clean) { @@ -364,7 +364,7 @@ PHP_FUNCTION(ob_end_clean) /* }}} */ -/* proto string ob_get_contents() +/* proto string ob_get_contents(void) Return the contents of the output buffer */ PHP_FUNCTION(ob_get_contents) { @@ -375,9 +375,8 @@ PHP_FUNCTION(ob_get_contents) /* }}} */ -/* proto void ob_implicit_flush([flag]) - Turn implicit flush on/off - Implicit flush is equivalent to calling flush() after every output call */ +/* {{{ proto void ob_implicit_flush([int flag]) + Turn implicit flush on/off and is equivalent to calling flush() after every output call */ PHP_FUNCTION(ob_implicit_flush) { zval **zv_flag; |