mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-12-23 08:21:09 +00:00
This adds initial SQLite C ABI compatibility to Limbo to make sure we drive the Rust API in the right way that allows us to implement SQLite semantics.
11 lines
173 B
C
11 lines
173 B
C
#include <sqlite3.h>
|
|
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#include "check.h"
|
|
|
|
void test_close(void)
|
|
{
|
|
CHECK_EQUAL(SQLITE_OK, sqlite3_close(NULL));
|
|
}
|