David van Moolenbroek 0dc5c83ec2 libvtreefs: use libfsdriver
Change-Id: I0e6446bd0ccc3b89edc237be441ebfd92585f352
2014-09-18 12:46:26 +00:00

18 lines
397 B
C

/* VTreeFS - table.c - by Alen Stojanov and David van Moolenbroek */
#define _TABLE
#include "inc.h"
struct fsdriver vtreefs_table = {
.fdr_mount = fs_mount,
.fdr_unmount = fs_unmount,
.fdr_lookup = fs_lookup,
.fdr_putnode = fs_putnode,
.fdr_read = fs_read,
.fdr_getdents = fs_getdents,
.fdr_rdlink = fs_rdlink,
.fdr_stat = fs_stat,
.fdr_statvfs = fs_statvfs,
.fdr_other = fs_other
};