OLD | NEW |
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 Loading... |
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 |
OLD | NEW |