aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <>2021-10-03 00:12:43 +0000
committerdrh <>2021-10-03 00:12:43 +0000
commit5bf4715e0184cceca87c372af609959c6df75b43 (patch)
tree751bc0d7f1b1d84d7acc6dc1704cecbaeaad4618 /src/sqliteInt.h
parentad1188b21c6fc7a08a6639c7c09beb5295c15a09 (diff)
downloadsqlite-5bf4715e0184cceca87c372af609959c6df75b43.tar.gz
sqlite-5bf4715e0184cceca87c372af609959c6df75b43.zip
Add the sqlite3ResultStrAccum() internal interface to simplify the
the implementation of functions that return strings. FossilOrigin-Name: e548e9299d3fd6ce5b647cf0dd93ff8e917a5eda43076c6a02389c52640e2e50
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index c1e0638dc..a7f830263 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -4941,6 +4941,7 @@ int sqlite3OpenTempDatabase(Parse *);
void sqlite3StrAccumInit(StrAccum*, sqlite3*, char*, int, int);
char *sqlite3StrAccumFinish(StrAccum*);
void sqlite3StrAccumSetError(StrAccum*, u8);
+void sqlite3ResultStrAccum(sqlite3_context*,StrAccum*);
void sqlite3SelectDestInit(SelectDest*,int,int);
Expr *sqlite3CreateColumnExpr(sqlite3 *, SrcList *, int, int);