diff options
author | Egon Schmid <eschmid@php.net> | 2000-07-13 19:09:32 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2000-07-13 19:09:32 +0000 |
commit | d041052428356411f1573f8fdad8e5b64695085b (patch) | |
tree | d32d9c7ec7b8b589f23f10f5ba1896b70057e7f0 /ext/icap/php_icap.c | |
parent | 28f38ea4fe881549a09f4d5f0dc534117e814245 (diff) | |
download | php-git-d041052428356411f1573f8fdad8e5b64695085b.tar.gz |
Fixed protos.
Diffstat (limited to 'ext/icap/php_icap.c')
-rw-r--r-- | ext/icap/php_icap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/icap/php_icap.c b/ext/icap/php_icap.c index cb12ddd4c0..45e6aadff1 100644 --- a/ext/icap/php_icap.c +++ b/ext/icap/php_icap.c @@ -311,7 +311,7 @@ PHP_FUNCTION(icap_expunge) } /* }}} */ -/* {{{ proto int icap_fetch_event(int stream_id,int eventid, [int options]) +/* {{{ proto int icap_fetch_event(int stream_id, int eventid [, int options]) Fetch an event */ PHP_FUNCTION(icap_fetch_event) { @@ -379,7 +379,7 @@ PHP_FUNCTION(icap_fetch_event) } /* }}} */ -/* {{{ proto array icap_list_events(int stream_id,int begindate, [int enddate]) +/* {{{ proto array icap_list_events(int stream_id, int begindate [, int enddate]) Returns list of UIDs for that day or range of days */ PHP_FUNCTION(icap_list_events) { @@ -612,7 +612,7 @@ PHP_FUNCTION(icap_list_alarms) /* {{{ proto string icap_delete_calendar(int stream_id, string calendar) - Delete calendar*/ + Delete calendar */ PHP_FUNCTION(icap_delete_calendar) { pval *streamind, *calendar; |