diff options
author | drh <> | 2023-06-30 19:41:57 +0000 |
---|---|---|
committer | drh <> | 2023-06-30 19:41:57 +0000 |
commit | 002330dc483ff706bcce8f0df2851dd6c656fc55 (patch) | |
tree | 13c0845d884ddd9078205b433d0cf05237ee92d2 /src/sqliteInt.h | |
parent | a1b0ff173520fc73a182e57b06b1d0228b343711 (diff) | |
download | sqlite-002330dc483ff706bcce8f0df2851dd6c656fc55.tar.gz sqlite-002330dc483ff706bcce8f0df2851dd6c656fc55.zip |
Add decimal rounding to the sqlite3FpDecode() routine.
FossilOrigin-Name: 27871140caa833f0bc0962e44356993938e93dcf81c1074382b1560a3e1aeb61
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index b4705b5e2..96cac978c 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4611,7 +4611,7 @@ struct FpDecode { char z[24]; /* Significiant digits */ }; -void sqlite3FpDecode(FpDecode*,double); +void sqlite3FpDecode(FpDecode*,double,int); char *sqlite3MPrintf(sqlite3*,const char*, ...); char *sqlite3VMPrintf(sqlite3*,const char*, va_list); #if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE) |