emmafs/super.c

17 lines
228 B
C
Raw Normal View History

2024-10-08 23:01:29 +02:00
#ifndef SUPER_H_
#define SUPER_H_
#include "inode.h"
#include "util.h"
// fs attributes
#define MAGIC 0x7F631EC4
#define VERSION 0.0.0.1
#define BLOCKSIZE 4096
uint32_t free_blocks;
uint32_t inode_count;
#endif // SUPER_H_