summaryrefslogtreecommitdiff
path: root/ext/mssql/php_mssql.c
diff options
context:
space:
mode:
authorEgon Schmid <eschmid@php.net>2001-01-27 19:48:58 +0000
committerEgon Schmid <eschmid@php.net>2001-01-27 19:48:58 +0000
commit35524d3a73bf694f5b885989574a14a30132dd24 (patch)
tree365e43b4756f4a3e80d49822c3d72827e709b697 /ext/mssql/php_mssql.c
parent5b57490772c30cce46e2e7a60b1619d2ea804cf7 (diff)
downloadphp-git-35524d3a73bf694f5b885989574a14a30132dd24.tar.gz
Fixed some protos.
Diffstat (limited to 'ext/mssql/php_mssql.c')
-rw-r--r--ext/mssql/php_mssql.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/mssql/php_mssql.c b/ext/mssql/php_mssql.c
index 2814d1c7ed..85e8eaa9d4 100644
--- a/ext/mssql/php_mssql.c
+++ b/ext/mssql/php_mssql.c
@@ -796,7 +796,7 @@ int _mssql_fetch_batch(mssql_link *mssql_ptr, mssql_result *result, int retvalue
}
/* {{{ proto int mssql_fetch_batch(string result_index)
- returns the next batch of records*/
+ Returns the next batch of records */
PHP_FUNCTION(mssql_fetch_batch) {
zval **mssql_result_index;
mssql_result *result;
@@ -836,7 +836,7 @@ PHP_FUNCTION(mssql_fetch_batch) {
}
/* }}} */
-/* {{{ proto int mssql_query(string query [, int conn_id [, int batch_size = 0]])
+/* {{{ proto int mssql_query(string query [, int conn_id [, int batch_size]])
Perform an SQL query on a MS-SQL server database */
PHP_FUNCTION(mssql_query)
{
@@ -969,7 +969,7 @@ PHP_FUNCTION(mssql_query)
/* }}} */
/* {{{ proto int mssql_rows_affected(int conn_id)
- returns the number of records affected by the query*/
+ Returns the number of records affected by the query */
PHP_FUNCTION(mssql_rows_affected) {
zval **mssql_link_index;
mssql_link *mssql_ptr;