mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-08 06:38:12 -04:00
DBD-SQLite: made some routines static and cosmetic changes
This commit is contained in:
parent
29b488e5ea
commit
9e6ab8d21e
1 changed files with 7 additions and 4 deletions
11
dbdimp.c
11
dbdimp.c
|
@ -717,7 +717,7 @@ sqlite_st_STORE_attrib (SV *sth, imp_sth_t *imp_sth, SV *keysv, SV *valuesv)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
static int
|
||||||
type_to_odbc_type (int type)
|
type_to_odbc_type (int type)
|
||||||
{
|
{
|
||||||
switch(type) {
|
switch(type) {
|
||||||
|
@ -1190,7 +1190,8 @@ sqlite3_db_create_aggregate(pTHX_ SV *dbh, const char *name, int argc, SV *aggr_
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int sqlite_db_collation_dispatcher(void *func, int len1, const void *string1,
|
static int
|
||||||
|
sqlite_db_collation_dispatcher(void *func, int len1, const void *string1,
|
||||||
int len2, const void *string2)
|
int len2, const void *string2)
|
||||||
{
|
{
|
||||||
dTHX;
|
dTHX;
|
||||||
|
@ -1217,7 +1218,8 @@ int sqlite_db_collation_dispatcher(void *func, int len1, const void *string1,
|
||||||
return cmp;
|
return cmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
int sqlite_db_collation_dispatcher_utf8(
|
static int
|
||||||
|
sqlite_db_collation_dispatcher_utf8(
|
||||||
void *func, int len1, const void *string1,
|
void *func, int len1, const void *string1,
|
||||||
int len2, const void *string2)
|
int len2, const void *string2)
|
||||||
{
|
{
|
||||||
|
@ -1290,7 +1292,8 @@ sqlite3_db_create_collation(pTHX_ SV *dbh, const char *name, SV *func )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int sqlite_db_progress_handler_dispatcher( void *handler )
|
static int
|
||||||
|
sqlite_db_progress_handler_dispatcher( void *handler )
|
||||||
{
|
{
|
||||||
dTHX;
|
dTHX;
|
||||||
dSP;
|
dSP;
|
||||||
|
|
Loading…
Add table
Reference in a new issue