minix/lib/libvtreefs/proto.h

42 lines
817 B
C
Raw Normal View History

2010-08-10 22:05:51 +02:00
#ifndef _VTREEFS_PROTO_H
#define _VTREEFS_PROTO_H
/* inode.c */
void init_inodes(unsigned int inodes, struct inode_stat *stat, index_t
nr_indexed_entries);
void cleanup_inodes(void);
struct inode *find_inode(pino_t num);
struct inode *get_inode(pino_t num);
void put_inode(struct inode *node);
void ref_inode(struct inode *node);
int get_inode_number(struct inode *node);
int is_inode_deleted(struct inode *node);
int fs_putnode(void);
2010-08-10 22:05:51 +02:00
/* link.c */
int fs_rdlink(void);
2010-08-10 22:05:51 +02:00
/* mount.c */
int fs_readsuper(void);
int fs_unmount(void);
2010-08-10 22:05:51 +02:00
/* path.c */
int fs_lookup(void);
2010-08-10 22:05:51 +02:00
/* read.c */
int fs_read(void);
int fs_getdents(void);
2010-08-10 22:05:51 +02:00
/* sdbm.c */
long sdbm_hash(char *str, int len);
2010-08-10 22:05:51 +02:00
/* stadir.c */
int fs_stat(void);
int fs_statvfs(void);
2010-08-10 22:05:51 +02:00
/* utility.c */
int no_sys(void);
int do_noop(void);
2010-08-10 22:05:51 +02:00
#endif /* _VTREEFS_PROTO_H */