]> granicus.if.org Git - php/commitdiff
More protos.
authorEgon Schmid <eschmid@php.net>
Thu, 24 Feb 2000 15:55:10 +0000 (15:55 +0000)
committerEgon Schmid <eschmid@php.net>
Thu, 24 Feb 2000 15:55:10 +0000 (15:55 +0000)
ext/aspell/aspell.c
ext/wddx/wddx.c

index 1cc30ca279248014cbc78273ec1e483f9bb77931..0721628b4dd77d9cbd1f7759b62f2ac6e9f9dc57 100644 (file)
@@ -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;
index 947bb8c7d73b8fb6beba51b2dae8a1c2c7bb5de7..e8c71a172597c3272b32ce7a04c926331d3a1e43 100644 (file)
@@ -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)
 {