.Dd January 24, 2024
.Dt SQLITE3_STMT_SCANSTATUS_RESET 3
.Os
.Sh NAME
.Nm sqlite3_stmt_scanstatus_reset
.Nd zero scan-Status counters
.Sh SYNOPSIS
.In sqlite3.h
.Ft void
.Fo sqlite3_stmt_scanstatus_reset
.Fa "sqlite3_stmt*"
.Fc
.Sh DESCRIPTION
Zero all
.Fn sqlite3_stmt_scanstatus
related event counters.
.Pp
This API is only available if the library is built with pre-processor
symbol SQLITE_ENABLE_STMT_SCANSTATUS defined.
.Sh IMPLEMENTATION NOTES
These declarations were extracted from the
interface documentation at line 10272.
.Bd -literal
SQLITE_API void sqlite3_stmt_scanstatus_reset(sqlite3_stmt*);
.Ed
.Sh SEE ALSO
.Xr sqlite3_stmt_scanstatus 3