MCPcopy Create free account
hub / github.com/audacity/audacity / sqlite3_completion_init

Function sqlite3_completion_init

lib-src/sqlite/shell.c:3611–3623  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3609
3610#endif
3611int sqlite3_completion_init(
3612 sqlite3 *db,
3613 char **pzErrMsg,
3614 const sqlite3_api_routines *pApi
3615){
3616 int rc = SQLITE_OK;
3617 SQLITE_EXTENSION_INIT2(pApi);
3618 (void)(pzErrMsg); /* Unused parameter */
3619#ifndef SQLITE_OMIT_VIRTUALTABLE
3620 rc = sqlite3CompletionVtabInit(db);
3621#endif
3622 return rc;
3623}
3624
3625/************************* End ../ext/misc/completion.c ********************/
3626/************************* Begin ../ext/misc/appendvfs.c ******************/

Callers 1

open_dbFunction · 0.85

Calls 1

Tested by

no test coverage detected