tape-kernel 1.0
a modular modern independent kernel
Loading...
Searching...
No Matches
ffs.h
Go to the documentation of this file.
1#ifndef FFS_H
2#define FFS_H
3
4#include "../lib/types.h"
5
6#define ffsinit __ffsinit
7#define disksize __disksize
8
9void __ffsinit(void); //flat file system init
11
12#endif
void __ffsinit(void)
ffsinit initializes the flat filesystem on disk
Definition ffs.c:22
uint32_t __disksize(void)
disksize returns the total disk size in kilobytes
Definition ffs.c:65
unsigned int uint32_t
Definition types.h:30