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

Side by Side Diff: third_party/sqlite/sqlite-src-3080704/ext/fts1/simple_tokenizer.c

Issue 883353008: [sql] Import reference version of SQLite 3.8.7.4. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hold back encoding change which is messing up patch. Created 5 years, 10 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 /* 1 /*
2 ** The author disclaims copyright to this source code. 2 ** The author disclaims copyright to this source code.
3 ** 3 **
4 ************************************************************************* 4 *************************************************************************
5 ** Implementation of the "simple" full-text-search tokenizer. 5 ** Implementation of the "simple" full-text-search tokenizer.
6 */ 6 */
7 7
8 #include <assert.h> 8 #include <assert.h>
9 #if !defined(__APPLE__) 9 #if !defined(__APPLE__)
10 #include <malloc.h> 10 #include <malloc.h>
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 simpleOpen, 165 simpleOpen,
166 simpleClose, 166 simpleClose,
167 simpleNext, 167 simpleNext,
168 }; 168 };
169 169
170 void get_simple_tokenizer_module( 170 void get_simple_tokenizer_module(
171 sqlite3_tokenizer_module **ppModule 171 sqlite3_tokenizer_module **ppModule
172 ){ 172 ){
173 *ppModule = &simpleTokenizerModule; 173 *ppModule = &simpleTokenizerModule;
174 } 174 }
OLDNEW
« no previous file with comments | « third_party/sqlite/sqlite-src-3080704/ext/fts1/fulltext.c ('k') | third_party/sqlite/sqlite-src-3080704/ext/fts1/tokenizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698