mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-09 14:21:03 +03:00
Change the SQLITE_FCNTL_PRAGMA file-control so that it can return a string
value. FossilOrigin-Name: fd8d7440277b17f57a6dc0a210f42adf1fa2dcd2
This commit is contained in:
@@ -222,7 +222,7 @@ int sqlite3Dequote(char *z){
|
||||
** definition of case independence that SQLite uses internally when
|
||||
** comparing identifiers.
|
||||
*/
|
||||
int sqlite3StrICmp(const char *zLeft, const char *zRight){
|
||||
int sqlite3_stricmp(const char *zLeft, const char *zRight){
|
||||
register unsigned char *a, *b;
|
||||
a = (unsigned char *)zLeft;
|
||||
b = (unsigned char *)zRight;
|
||||
|
||||
Reference in New Issue
Block a user