Initial commit

This commit is contained in:
2026-01-23 22:15:36 +01:00
commit ca60108606
167 changed files with 5311 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#include <stdio.h>
#include <sqlite3.h>
int main() {
printf("SQLite Version: %s\n", sqlite3_libversion());
return 0;
}