14 lines
No EOL
167 B
C
14 lines
No EOL
167 B
C
#ifndef FS_FILE_H
|
|
# define FS_FILE_H 1
|
|
|
|
# include "inode.h"
|
|
|
|
struct fs_file {
|
|
int refcount;
|
|
|
|
struct fs_inode *ip;
|
|
|
|
struct fs_file *next;
|
|
};
|
|
|
|
#endif /* !FS_FILE_H */ |