1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Use sqlite3XPrintf() instead of sqlite3StrAccumAppend() in a few places

for better performance and a smaller footprint.

FossilOrigin-Name: 82355e41084387fa11b7b531e4d660dd3b4cd984
This commit is contained in:
drh
2015-09-02 15:37:50 +00:00
parent 4ef299a32c
commit d37bea5bdc
5 changed files with 18 additions and 20 deletions

View File

@@ -1062,7 +1062,8 @@ void sqlite3DebugPrintf(const char *zFormat, ...){
/*
** variable-argument wrapper around sqlite3VXPrintf().
** variable-argument wrapper around sqlite3VXPrintf(). The bFlags argument
** can contain the bit SQLITE_PRINTF_INTERNAL enable internal formats.
*/
void sqlite3XPrintf(StrAccum *p, u32 bFlags, const char *zFormat, ...){
va_list ap;