/** * \file stpdfs.h */ #ifndef STPDFS_H # define STPDFS_H 1 # include 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 */