| 37 | } |
| 38 | |
| 39 | int EMSCRIPTEN_KEEPALIVE libfunction_create_function( |
| 40 | sqlite3* db, |
| 41 | const char* zFunctionName, |
| 42 | int nArg, |
| 43 | int eTextRep, |
| 44 | void* pApp, |
| 45 | void* xFunc, |
| 46 | void* xStep, |
| 47 | void* xFinal) { |
| 48 | return sqlite3_create_function_v2( |
| 49 | db, |
| 50 | zFunctionName, |
| 51 | nArg, |
| 52 | eTextRep, |
| 53 | pApp, |
| 54 | xFunc ? &libfunction_xFunc : NULL, |
| 55 | xStep ? &libfunction_xStep : NULL, |
| 56 | xFinal ? &libfunction_xFinal : NULL, |
| 57 | &sqlite3_free); |
| 58 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…