| 1 | #include <sqlite3ext.h> |
| 2 | SQLITE_EXTENSION_INIT1 |
| 3 | |
| 4 | /* |
| 5 | This SQLite extension is used only for testing purposes (npm test). |
| 6 | */ |
| 7 | |
| 8 | static void TestExtensionFunction(sqlite3_context* pCtx, int nVal, sqlite3_value** _) { |
| 9 | sqlite3_result_double(pCtx, (double)nVal); |
| 10 | } |
| 11 | |
| 12 | #ifdef _WIN32 |
| 13 | __declspec(dllexport) |
nothing calls this directly
no outgoing calls
no test coverage detected