diff options
author | Frank M. Kromann <fmk@php.net> | 2001-05-22 18:26:36 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2001-05-22 18:26:36 +0000 |
commit | 251996bb79b4fe0ec59f9fade2c2ca76f00ebbcb (patch) | |
tree | 0fa0ed8cdd8b8692ca0b6ce1a1ce14e005c1f659 /ext/fbsql | |
parent | 699489d4569c88eb23591bde65dccede41f62f93 (diff) | |
download | php-git-251996bb79b4fe0ec59f9fade2c2ca76f00ebbcb.tar.gz |
Fixing prototypes to match function names
Diffstat (limited to 'ext/fbsql')
-rw-r--r-- | ext/fbsql/php_fbsql.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/fbsql/php_fbsql.c b/ext/fbsql/php_fbsql.c index e3899e4d21..8ef0c90b46 100644 --- a/ext/fbsql/php_fbsql.c +++ b/ext/fbsql/php_fbsql.c @@ -2007,7 +2007,7 @@ PHP_FUNCTION(fbsql_errno) /* }}} */ -/* {{{ proto bool fbsql_generate_warnings([int flag]); +/* {{{ proto bool fbsql_warnings([int flag]); */ PHP_FUNCTION(fbsql_warnings) { @@ -2975,7 +2975,7 @@ PHP_FUNCTION(fbsql_field_table) /* }}} */ -/* {{{ proto string fbsql_field_lene(int result, int field_index) +/* {{{ proto string fbsql_field_len(int result, int field_index) */ PHP_FUNCTION(fbsql_field_len) { @@ -3090,7 +3090,7 @@ PHP_FUNCTION(fbsql_field_type) /* }}} */ -/* {{{ proto string string fbsql_field_flags(int result[, int field_index]) +/* {{{ proto string fbsql_field_flags(int result[, int field_index]) */ PHP_FUNCTION(fbsql_field_flags) { |