1 | /* 2 | fcfs_vfs.h 3 | ---------- 4 | VFS operations for FCFS 5 | 6 | $Id: fcfs_vfs.h,v 1.1 2003/10/28 16:17:54 stewart Exp $ 7 | 8 | (C)2003 Stewart Smith 9 | Distributed under the GPL 10 | */ 11 | 12 | #ifndef __FCFS_VFS_H__ 13 | #define __FCFS_VFS_H__ 14 | 15 | #include "disk.h" 16 | #include "super_block.h" 17 | #include "onode.h" 18 | 19 | 20 | struct fcfs_disk *fcfs_mount(char *name); 21 | int fcfs_umount(struct fcfs_disk *disk); 22 | 23 | 24 | #endif