MCPcopy Index your code
hub / github.com/rhashimoto/wa-sqlite / libfunction_create_function

Function libfunction_create_function

src/libfunction.c:39–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37}
38
39int 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…