16 lines
No EOL
271 B
C
16 lines
No EOL
271 B
C
#ifndef FS_SUPER_H
|
|
# define FS_SUPER_H 1
|
|
|
|
# include <stdint.h>
|
|
# include <stupidfs.h>
|
|
|
|
struct fs_super {
|
|
int fd;
|
|
struct stpdfs_sb sb;
|
|
};
|
|
|
|
|
|
int fs_super_kill(struct fs_super *super);
|
|
int fs_super_open(struct fs_super *super, const char *fname);
|
|
|
|
#endif /* !FS_SUPER_H */ |