diff options
author | Andrey Hristov <andrey@php.net> | 2003-06-15 15:29:46 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2003-06-15 15:29:46 +0000 |
commit | eb33adf139f1af26a8c858400e3a996357fb5f18 (patch) | |
tree | 4d44f9a717b292e51728668e27439c2ec6d0704c /ext/fdf | |
parent | b81873134b275884a400247aedecd002d9335568 (diff) | |
download | php-git-eb33adf139f1af26a8c858400e3a996357fb5f18.tar.gz |
proto fixes
Diffstat (limited to 'ext/fdf')
-rw-r--r-- | ext/fdf/fdf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/fdf/fdf.c b/ext/fdf/fdf.c index 983c45b133..f73fd97485 100644 --- a/ext/fdf/fdf.c +++ b/ext/fdf/fdf.c @@ -309,7 +309,7 @@ PHP_FUNCTION(fdf_create) } /* }}} */ -/* {{{ proto bool fdf_close(resource fdfdoc) +/* {{{ proto void fdf_close(resource fdfdoc) Closes the FDF document */ PHP_FUNCTION(fdf_close) { @@ -777,7 +777,7 @@ PHP_FUNCTION(fdf_get_file) } /* }}} */ -/* {{{ proto mixed fdf_save(resource fdfdoc [, string filename]) +/* {{{ proto bool fdf_save(resource fdfdoc [, string filename]) Writes out the FDF file */ PHP_FUNCTION(fdf_save) { @@ -834,7 +834,7 @@ PHP_FUNCTION(fdf_save) } /* }}} */ -/* {{{ proto mixed fdf_save_string(resource fdfdoc) +/* {{{ proto string fdf_save_string(resource fdfdoc) Returns the FDF file as a string */ PHP_FUNCTION(fdf_save_string) { |