Added test.c
This commit is contained in:
parent
c8a2907d6b
commit
134037bfde
12
src/test.c
Normal file
12
src/test.c
Normal 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user