1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Deploy the sqlite3Strlen30NN() function (argument guaranteed to be non-NULL) for

a small performance improvement.

FossilOrigin-Name: 4a6ad5190b62020d97a7de02c801544f20b7b98145ceff14af1f2834d3057f9c
This commit is contained in:
drh
2018-10-31 20:52:00 +00:00
parent a60c63013e
commit 7301e77402
6 changed files with 16 additions and 14 deletions

View File

@@ -3665,6 +3665,7 @@ int sqlite3IsIdChar(u8);
*/
int sqlite3StrICmp(const char*,const char*);
int sqlite3Strlen30(const char*);
#define sqlite3Strlen30NN(C) (strlen(C)&0x3fffffff)
char *sqlite3ColumnType(Column*,char*);
#define sqlite3StrNICmp sqlite3_strnicmp