1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 22:28:47 -04:00

DBD-SQLite: whitespace cleanup

This commit is contained in:
Kenichi Ishigaki 2009-07-21 06:41:23 +00:00
parent 54c2130015
commit 1ca47cd329

View file

@ -925,7 +925,6 @@ sqlite_db_func_dispatcher(int is_unicode, sqlite3_context *context, int argc, sq
LEAVE; LEAVE;
} }
static void static void
sqlite_db_func_dispatcher_unicode(sqlite3_context *context, int argc, sqlite3_value **value) sqlite_db_func_dispatcher_unicode(sqlite3_context *context, int argc, sqlite3_value **value)
{ {
@ -1193,7 +1192,6 @@ sqlite_db_create_aggregate(pTHX_ SV *dbh, const char *name, int argc, SV *aggr_p
return TRUE; return TRUE;
} }
int int
sqlite_db_collation_dispatcher( sqlite_db_collation_dispatcher(
void *func, int len1, const void *string1, void *func, int len1, const void *string1,
@ -1302,7 +1300,6 @@ sqlite_db_create_collation(pTHX_ SV *dbh, const char *name, SV *func )
return TRUE; return TRUE;
} }
void void
sqlite_db_collation_needed_dispatcher ( sqlite_db_collation_needed_dispatcher (
void *info, void *info,
@ -1329,9 +1326,6 @@ sqlite_db_collation_needed_dispatcher (
LEAVE; LEAVE;
} }
void void
sqlite_db_collation_needed(pTHX_ SV *dbh, SV *callback ) sqlite_db_collation_needed(pTHX_ SV *dbh, SV *callback )
{ {
@ -1356,7 +1350,6 @@ sqlite_db_collation_needed(pTHX_ SV *dbh, SV *callback )
} }
int int
sqlite_db_generic_callback_dispatcher( void *callback ) sqlite_db_generic_callback_dispatcher( void *callback )
{ {
@ -1406,7 +1399,6 @@ sqlite_db_progress_handler(pTHX_ SV *dbh, int n_opcodes, SV *handler )
return TRUE; return TRUE;
} }
SV* SV*
sqlite_db_commit_hook( pTHX_ SV *dbh, SV *hook ) sqlite_db_commit_hook( pTHX_ SV *dbh, SV *hook )
{ {
@ -1432,7 +1424,6 @@ sqlite_db_commit_hook( pTHX_ SV *dbh, SV *hook )
return retval ? newSVsv(retval) : &PL_sv_undef; return retval ? newSVsv(retval) : &PL_sv_undef;
} }
SV* SV*
sqlite_db_rollback_hook( pTHX_ SV *dbh, SV *hook ) sqlite_db_rollback_hook( pTHX_ SV *dbh, SV *hook )
{ {
@ -1459,8 +1450,6 @@ sqlite_db_rollback_hook( pTHX_ SV *dbh, SV *hook )
return retval ? newSVsv(retval) : &PL_sv_undef; return retval ? newSVsv(retval) : &PL_sv_undef;
} }
void void
sqlite_db_update_dispatcher( void *callback, int op, sqlite_db_update_dispatcher( void *callback, int op,
char const *database, char const *table, char const *database, char const *table,
@ -1487,7 +1476,6 @@ sqlite_db_update_dispatcher( void *callback, int op,
LEAVE; LEAVE;
} }
SV* SV*
sqlite_db_update_hook( pTHX_ SV *dbh, SV *hook ) sqlite_db_update_hook( pTHX_ SV *dbh, SV *hook )
{ {
@ -1513,7 +1501,6 @@ sqlite_db_update_hook( pTHX_ SV *dbh, SV *hook )
return retval ? newSVsv(retval) : &PL_sv_undef; return retval ? newSVsv(retval) : &PL_sv_undef;
} }
int int
sqlite_db_authorizer_dispatcher ( sqlite_db_authorizer_dispatcher (
void *authorizer, void *authorizer,
@ -1556,10 +1543,6 @@ sqlite_db_authorizer_dispatcher (
return retval; return retval;
} }
int int
sqlite_db_set_authorizer( pTHX_ SV *dbh, SV *authorizer ) sqlite_db_set_authorizer( pTHX_ SV *dbh, SV *authorizer )
{ {
@ -1585,10 +1568,6 @@ sqlite_db_set_authorizer( pTHX_ SV *dbh, SV *authorizer )
return retval; return retval;
} }
/* Accesses the SQLite Online Backup API, and fills the currently loaded /* Accesses the SQLite Online Backup API, and fills the currently loaded
* database from the passed filename. * database from the passed filename.
* Usual usage of this would be when you're operating on the :memory: * Usual usage of this would be when you're operating on the :memory: