MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / sqlite3_base64_init

Function sqlite3_base64_init

modules/dasSQLITE/sqlite/shell.c:3357–3366  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3355int sqlite3_base_init
3356#else
3357static int sqlite3_base64_init
3358#endif
3359(sqlite3 *db, char **pzErr, const sqlite3_api_routines *pApi){
3360 SQLITE_EXTENSION_INIT2(pApi);
3361 (void)pzErr;
3362 return sqlite3_create_function
3363 (db, "base64", 1,
3364 SQLITE_DETERMINISTIC|SQLITE_INNOCUOUS|SQLITE_DIRECTONLY|SQLITE_UTF8,
3365 0, base64, 0, 0);
3366}
3367
3368/*
3369** Define some macros to allow this extension to be built into the shell

Callers 1

open_dbFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected