From: Egon Schmid Date: Thu, 24 Feb 2000 15:55:10 +0000 (+0000) Subject: More protos. X-Git-Tag: PHP-4.0-RC1~431 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=478abf57d42b02bed73a162b9d7b17eda48100f1;p=php More protos. --- diff --git a/ext/aspell/aspell.c b/ext/aspell/aspell.c index 1cc30ca279..0721628b4d 100644 --- a/ext/aspell/aspell.c +++ b/ext/aspell/aspell.c @@ -63,7 +63,7 @@ PHP_MINIT_FUNCTION(aspell) } -/* {{{ proto int aspell_new(string master[, string personal]) +/* {{{ proto int aspell_new(string master [, string personal]) Load a dictionary */ PHP_FUNCTION(aspell_new) { @@ -91,7 +91,7 @@ PHP_FUNCTION(aspell_new) /* }}} */ -/* {{{ proto array aspell_suggest(aspell int,string word) +/* {{{ proto array aspell_suggest(aspell int, string word) Return array of Suggestions */ PHP_FUNCTION(aspell_suggest) { @@ -128,7 +128,7 @@ PHP_FUNCTION(aspell_suggest) } /* }}} */ -/* {{{ proto int aspell_check(aspell int,string word) +/* {{{ proto int aspell_check(aspell int, string word) Return if word is valid */ PHP_FUNCTION(aspell_check) { @@ -160,8 +160,8 @@ PHP_FUNCTION(aspell_check) } /* }}} */ -/* {{{ proto int aspell_check_raw(aspell int,string word) - Return if word is valid, ignoring case or trying to trim it in any way*/ +/* {{{ proto int aspell_check_raw(aspell int, string word) + Return if word is valid, ignoring case or trying to trim it in any way */ PHP_FUNCTION(aspell_check_raw) { pval **scin,**word; diff --git a/ext/wddx/wddx.c b/ext/wddx/wddx.c index 947bb8c7d7..e8c71a1725 100644 --- a/ext/wddx/wddx.c +++ b/ext/wddx/wddx.c @@ -743,7 +743,7 @@ void php_wddx_deserialize_ex(char *value, int vallen, zval *return_value) /* }}} */ -/* {{{ proto string wddx_serialize_value(mixed var [, string comment ]) +/* {{{ proto string wddx_serialize_value(mixed var [, string comment]) Creates a new packet and serializes the given value */ PHP_FUNCTION(wddx_serialize_value) { @@ -781,7 +781,7 @@ PHP_FUNCTION(wddx_serialize_value) /* }}} */ -/* {{{ proto string wddx_serialize_vars(. . .) +/* {{{ proto string wddx_serialize_vars(mixed var_name [, ...]) Creates a new packet and serializes given variables into a struct */ PHP_FUNCTION(wddx_serialize_vars) { @@ -838,7 +838,7 @@ wddx_packet *php_wddx_constructor(void) return packet; } -/* {{{ proto int wddx_packet_start([ string comment ]) +/* {{{ proto int wddx_packet_start([string comment]) Starts a WDDX packet with optional comment and returns the packet id */ PHP_FUNCTION(wddx_packet_start) { @@ -899,7 +899,7 @@ PHP_FUNCTION(wddx_packet_end) /* }}} */ -/* {{{ proto int wddx_add_vars(int packet_id, . . .) +/* {{{ proto int wddx_add_vars(int packet_id [, ...]) Serializes given variables and adds them to packet given by packet_id */ PHP_FUNCTION(wddx_add_vars) { @@ -941,7 +941,7 @@ PHP_FUNCTION(wddx_add_vars) /* }}} */ -/* {{{ proto mixed wddx_deserialize(string packet) +/* {{{ proto mixed wddx_deserialize(string packet) Deserializes given packet and returns a PHP value */ PHP_FUNCTION(wddx_deserialize) {