aboutsummaryrefslogtreecommitdiff
path: root/manual tests/1 wrap/main.c
blob: df6abe43431e1c65c9a9cedaaf2e2225b472b7e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include<sqlite3.h>
#include<stdio.h>

int main(void) {
    sqlite3 *db;
    if(sqlite3_open(":memory:", &db) != SQLITE_OK) {
        printf("Sqlite failed.\n");
        return 1;
    }
    sqlite3_close(db);
    return 0;
}