aboutsummaryrefslogtreecommitdiff
path: root/include/fusestat.h
blob: a18509c0f0e1ecf5ed911ced7357d36b5e09c5e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __FUSESTAT_H_
#define __FUSESTAT_H_
/* this is seperated out into its own file because both
 * kernel and lib use it, but neither can #include the
 * other's headerfile */
typedef struct fuse_statfs {
    long block_size;
    long blocks;
    long blocks_free;
    long files;
    long files_free;
    long namelen;
} fuse_statfs_t;
#endif