Home
last modified time | relevance | path

Searched refs:zLeft (Results 1 – 1 of 1) sorted by relevance

/src/contrib/sqlite3/
H A Dsqlite3.c35919 SQLITE_API int sqlite3_stricmp(const char *zLeft, const char *zRight){ in sqlite3_stricmp() argument
35920 if( zLeft==0 ){ in sqlite3_stricmp()
35925 return sqlite3StrICmp(zLeft, zRight); in sqlite3_stricmp()
35927 SQLITE_PRIVATE int sqlite3StrICmp(const char *zLeft, const char *zRight){ in sqlite3StrICmp() argument
35930 a = (unsigned char *)zLeft; in sqlite3StrICmp()
35946 SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){ in sqlite3_strnicmp() argument
35948 if( zLeft==0 ){ in sqlite3_strnicmp()
35953 a = (unsigned char *)zLeft; in sqlite3_strnicmp()
141084 char *zLeft = 0; /* Nul-terminated UTF-8 string <id> */
141113 zLeft = sqlite3NameFromToken(db, pId);
[all …]