Added test.c

This commit is contained in:
xavi 2024-08-01 13:12:41 -07:00
parent c8a2907d6b
commit 134037bfde

12
src/test.c Normal file
View File

@ -0,0 +1,12 @@
#include "sqlite3.h"
#include <stdio.h>
int main( int argc, char **argv ){
sqlite3 *db;
char* filename = "test.db";
int rc = sqlite3_open(filename, &db);
return 0;
}