mirror of
https://github.com/ValveSoftware/halflife.git
synced 2025-02-13 15:18:54 +03:00
13 lines
225 B
C
13 lines
225 B
C
#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;
|
|
}
|