simplified tsqlite_connection_close

This commit is contained in:
2025-12-15 15:31:11 +05:00
parent 3a528c00c2
commit ac4f33be1b
3 changed files with 7 additions and 22 deletions

View File

@@ -30,8 +30,8 @@ typedef sqlite3 tsqlite_connection;
/// @return new sqlite connection
Result(tsqlite_connection*) tsqlite_connection_open(cstr file_path);
/// all statements and blobs must be destroyed before calling this
Result(void) tsqlite_connection_close(tsqlite_connection* db);
/// all statements and blobs should be destroyed before calling this
void tsqlite_connection_close(tsqlite_connection* db);
typedef struct tsqlite_statement {