use larger string heap
[rrq/fuse_xattrs.git] / xattrs_config.h
1 /*
2   fuse_xattrs - Add xattrs support using sidecar files
3
4   Copyright (C) 2017  Felipe Barriga Richards <felipe {at} felipebarriga.cl>
5
6   This program can be distributed under the terms of the GNU GPL.
7   See the file COPYING.
8 */
9
10 #ifndef FUSE_XATTRS_CONFIG_H
11 #define FUSE_XATTRS_CONFIG_H
12
13 extern struct xattrs_config {
14     const int show_sidecar;
15     const int enable_namespaces;
16     const char *sidecar_dir;
17     size_t sidecar_dir_size;
18     const char *source_dir;
19     size_t source_dir_size;
20 } xattrs_config;
21
22
23 #endif //FUSE_XATTRS_CONFIG_H