Draft of wal.c/.h

This commit is contained in:
2025-11-17 15:49:09 +01:00
parent eaa3f3a8a1
commit 6126a2e932
2 changed files with 110 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef WAL_INCLUDED
#define WAL_INCLUDED
typedef struct {
} WAL;
int wal_open (WAL *wal, FileTree *file_tree, string file_path)
void wal_close (WAL *wal);
int wal_append (WAL *wal, WALEntry entry);
#endif // WAL_INCLUDED