StupidFS/libstpdfs/stpdfs.h

18 lines
No EOL
338 B
C

/**
* \file stpdfs.h
*/
#ifndef STPDFS_H
# define STPDFS_H 1
# include <stupidfs.h>
struct stpdfs_super_info {
struct stpdfs_sb sb;
int fd;
};
int stpdfs_read_super(struct stpdfs_super_info *sbi, int fd);
int stpdfs_super_validate(struct stpdfs_sb *sb);
int stpdfs_kill_super(struct stpdfs_super_info *sbi);
#endif /* !STPDFS_H */