meta: replace bluelib with fx

This commit is contained in:
2026-06-22 17:45:54 +01:00
parent 4190a5c54a
commit c6c4b0c1f9
81 changed files with 3933 additions and 1349 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef _DB_H_
#define _DB_H_
#include <fx/io/directory.h>
#include <sqlite3.h>
extern fx_result open_database(
fx_directory *root,
const char *path,
int flags,
sqlite3 **out);
#endif