OLD | NEW |
1 /* | 1 /* |
2 ** 2006 July 10 | 2 ** 2006 July 10 |
3 ** | 3 ** |
4 ** The author disclaims copyright to this source code. | 4 ** The author disclaims copyright to this source code. |
5 ** | 5 ** |
6 ************************************************************************* | 6 ************************************************************************* |
7 ** Defines the interface to tokenizers used by fulltext-search. There | 7 ** Defines the interface to tokenizers used by fulltext-search. There |
8 ** are three basic components: | 8 ** are three basic components: |
9 ** | 9 ** |
10 ** sqlite3_tokenizer_module is a singleton defining the tokenizer | 10 ** sqlite3_tokenizer_module is a singleton defining the tokenizer |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 struct sqlite3_tokenizer_cursor { | 152 struct sqlite3_tokenizer_cursor { |
153 sqlite3_tokenizer *pTokenizer; /* Tokenizer for this cursor. */ | 153 sqlite3_tokenizer *pTokenizer; /* Tokenizer for this cursor. */ |
154 /* Tokenizer implementations will typically add additional fields */ | 154 /* Tokenizer implementations will typically add additional fields */ |
155 }; | 155 }; |
156 | 156 |
157 int fts3_global_term_cnt(int iTerm, int iCol); | 157 int fts3_global_term_cnt(int iTerm, int iCol); |
158 int fts3_term_cnt(int iTerm, int iCol); | 158 int fts3_term_cnt(int iTerm, int iCol); |
159 | 159 |
160 | 160 |
161 #endif /* _FTS3_TOKENIZER_H_ */ | 161 #endif /* _FTS3_TOKENIZER_H_ */ |
OLD | NEW |