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.
17 lines
319 B
C
17 lines
319 B
C
extern void test_open_misuse();
|
|
extern void test_open_not_found();
|
|
extern void test_open_existing();
|
|
extern void test_close();
|
|
extern void test_prepare_misuse();
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
test_open_misuse();
|
|
test_open_not_found();
|
|
test_open_existing();
|
|
test_close();
|
|
test_prepare_misuse();
|
|
|
|
return 0;
|
|
}
|