Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: third_party/sqlite/sqlite-src-3100200/ext/fts1/fulltext.c

Issue 1610543003: [sql] Import reference version of SQLite 3.10.2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* The author disclaims copyright to this source code. 1 /* The author disclaims copyright to this source code.
2 * 2 *
3 * This is an SQLite module implementing full-text search. 3 * This is an SQLite module implementing full-text search.
4 */ 4 */
5 5
6 #include <assert.h> 6 #include <assert.h>
7 #if !defined(__APPLE__) 7 #if !defined(__APPLE__)
8 #include <malloc.h> 8 #include <malloc.h>
9 #else 9 #else
10 #include <stdlib.h> 10 #include <stdlib.h>
(...skipping 1491 matching lines...) Expand 10 before | Expand all | Expand 10 after
1502 #if !SQLITE_CORE 1502 #if !SQLITE_CORE
1503 #ifdef _WIN32 1503 #ifdef _WIN32
1504 __declspec(dllexport) 1504 __declspec(dllexport)
1505 #endif 1505 #endif
1506 int sqlite3_fulltext_init(sqlite3 *db, char **pzErrMsg, 1506 int sqlite3_fulltext_init(sqlite3 *db, char **pzErrMsg,
1507 const sqlite3_api_routines *pApi){ 1507 const sqlite3_api_routines *pApi){
1508 SQLITE_EXTENSION_INIT2(pApi) 1508 SQLITE_EXTENSION_INIT2(pApi)
1509 return fulltext_init(db); 1509 return fulltext_init(db);
1510 } 1510 }
1511 #endif 1511 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698