update storage

This commit is contained in:
2026-04-01 15:01:25 +02:00
parent 06e6f02b86
commit dfea98aee2
3 changed files with 122 additions and 42 deletions

View File

@@ -0,0 +1,13 @@
#ifndef BLOCK_TABLE_H
#define BLOCK_TABLE_H
#include <stdint.h>
#include <stdlib.h>
typedef struct {
uint64_t blockNumber;
uint64_t byteNumber;
uint64_t blockSize;
} block_table_entry_t;
#endif