16 lines
228 B
C
16 lines
228 B
C
#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_
|