]> granicus.if.org Git - php/commitdiff
More protos.
authorEgon Schmid <eschmid@php.net>
Wed, 23 Feb 2000 15:04:36 +0000 (15:04 +0000)
committerEgon Schmid <eschmid@php.net>
Wed, 23 Feb 2000 15:04:36 +0000 (15:04 +0000)
ext/interbase/interbase.c
ext/ldap/ldap.c

index c958cdbe22110c3c4160a527e5c7d5be62a65fea..b023846338ea1a330e4620fec411553d6573bdbf 100644 (file)
@@ -628,8 +628,8 @@ static XSQLDA *php_ibase_execute(isc_tr_handle tr_handle, isc_stmt_handle query_
 }
 /* }}} */
 
-/* {{{ proto int ibase_query([int link_identifier, ]string query)
-   Execute a query (without parameter placeholders). */
+/* {{{ proto int ibase_query([int link_identifier], string query)
+   Execute a query (without parameter placeholders) */
 PHP_FUNCTION(ibase_query)
 {
        pval *query, *ibase_link;
@@ -712,7 +712,7 @@ PHP_FUNCTION(ibase_query)
 /* }}} */
 
 /* {{{ proto int ibase_fetch_row(int result)
-   Fetch a row from the results of a query. */
+   Fetch a row from the results of a query */
 PHP_FUNCTION(ibase_fetch_row)
 {
        pval *result;
@@ -873,7 +873,7 @@ PHP_FUNCTION(ibase_fetch_row)
 /* }}} */
 
 /* {{{ proto int ibase_free_result(int result)
-   Free the memory used by a result. */
+   Free the memory used by a result */
 PHP_FUNCTION(ibase_free_result)
 {
        pval *result;
@@ -901,8 +901,8 @@ PHP_FUNCTION(ibase_free_result)
 }
 /* }}} */
 
-/* {{{ proto int ibase_prepare([int link_identifier, ]string query)
-   Prepare a query for later binding of parameter placeholders and execution. */
+/* {{{ proto int ibase_prepare([int link_identifier], string query)
+   Prepare a query for later binding of parameter placeholders and execution */
 PHP_FUNCTION(ibase_prepare)
 {
        pval *query, *ibase_link;
@@ -960,7 +960,7 @@ PHP_FUNCTION(ibase_prepare)
 }
 /* }}} */
 
-/* {{{ proto int ibase_bind (int query)
+/* {{{ proto int ibase_bind(int query)
    Bind parameter placeholders in a previously prepared query. Still nonfunctional. */
 PHP_FUNCTION(ibase_bind)
 {
@@ -1021,7 +1021,7 @@ PHP_FUNCTION(ibase_bind)
 /* }}} */
 
 /* {{{ proto int ibase_execute(int query)
-   Execute a previously prepared (and possibly binded) query. */
+   Execute a previously prepared (and possibly binded) query */
 PHP_FUNCTION(ibase_execute)
 {
        pval *query;
index 7ba18cdba34931fc1e709b2664dfdd95d23e722c..a50f1e2e60920d9c2c372008f6706683f9ada1ed 100644 (file)
@@ -1258,7 +1258,7 @@ PHP_FUNCTION(ldap_mod_replace)
 /* }}} */
 
 /* {{{ proto int ldap_mod_add(int link, string dn, array entry)
-        Add attribute values to current */
+   Add attribute values to current */
 PHP_FUNCTION(ldap_mod_add)
 {
         php_ldap_do_modify(INTERNAL_FUNCTION_PARAM_PASSTHRU, LDAP_MOD_ADD);