mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-17 08:34:19 +01: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.
12 lines
173 B
C
12 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));
|
|
}
|