diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-06-13 14:56:07 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-06-13 14:56:07 +0000 |
commit | de6c599504cf4984ceb971050f44eb16269d1067 (patch) | |
tree | f520ca59fd590ce627c23a36e2f5594e25e4eca1 /ext/imap/php_imap.c | |
parent | 17861b93bf437c3130ff8dbb5a5605fe90e81919 (diff) | |
download | php-git-de6c599504cf4984ceb971050f44eb16269d1067.tar.gz |
Added missing function proto
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r-- | ext/imap/php_imap.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index 3a17dcea53..a884054516 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -4023,6 +4023,8 @@ PHP_FUNCTION (imap_thread) } /* }}} */ +/* {{{ proto mixed imap_timeout(int timeout_type [, int timeout]) + Set or fetch imap timeout */ PHP_FUNCTION (imap_timeout) { long ttype, timeout=-1; @@ -4078,6 +4080,7 @@ PHP_FUNCTION (imap_timeout) RETURN_FALSE; } } +/* }}} */ /* {{{ Interfaces to C-client */ |