xref: /minix3/minix/lib/libvtreefs/table.c (revision e985b929927b5932e3b68f4b50587d458900107a)
1 /* VTreeFS - table.c - by Alen Stojanov and David van Moolenbroek */
2 
3 #define _TABLE
4 #include "inc.h"
5 
6 struct fsdriver vtreefs_table = {
7 	.fdr_mount	= fs_mount,
8 	.fdr_unmount	= fs_unmount,
9 	.fdr_lookup	= fs_lookup,
10 	.fdr_putnode	= fs_putnode,
11 	.fdr_read	= fs_read,
12 	.fdr_getdents	= fs_getdents,
13 	.fdr_rdlink	= fs_rdlink,
14 	.fdr_stat	= fs_stat,
15 	.fdr_statvfs	= fs_statvfs,
16 	.fdr_other	= fs_other
17 };
18