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

Function iotracePrintf

modules/dasSQLITE/sqlite/shell.c:658–667  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

656*/
657#ifdef SQLITE_ENABLE_IOTRACE
658static void SQLITE_CDECL iotracePrintf(const char *zFormat, ...){
659 va_list ap;
660 char *z;
661 if( iotrace==0 ) return;
662 va_start(ap, zFormat);
663 z = sqlite3_vmprintf(zFormat, ap);
664 va_end(ap);
665 utf8_printf(iotrace, "%s", z);
666 sqlite3_free(z);
667}
668#endif
669
670/*

Callers

nothing calls this directly

Calls 1

utf8_printfFunction · 0.85

Tested by

no test coverage detected