From 0cb3dab6b0fc4b5ebe00c0afaaceb68dcf98c6dc Mon Sep 17 00:00:00 2001 From: bpc2003 Date: Fri, 23 May 2025 14:23:10 -0400 Subject: Migrating from personal testing framework to Unity --- src/include/xdbms.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/include/xdbms.h') diff --git a/src/include/xdbms.h b/src/include/xdbms.h index 3438f5e..a18996d 100644 --- a/src/include/xdbms.h +++ b/src/include/xdbms.h @@ -1,6 +1,13 @@ #ifndef XDBMS_H #define XDBMS_H -#include "engine/engine.h" +// init: intialize an XDBMS DB +int xdb_init(char *filename); + +// exec: execute a statement on an XDBMS DB +char *exec(char *stmt); + +// close: close an XDBMS DB +int close(); #endif -- cgit v1.2.3