File: externs.h

package info (click to toggle)
rdiff-backup-fs 1.0.0-8
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 952 kB
  • sloc: sh: 3,800; ansic: 2,944; makefile: 23
file content (23 lines) | stat: -rw-r--r-- 442 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _EXTERNS_H_
#define _EXTERNS_H_

#define FUSE_USE_VERSION 26

#include <fuse.h>

extern char *mount_dir;
// directory where data directory should be created
extern char *tmp_dir;
// directory where file system's data will be kept
extern char *data_dir;

extern struct fuse_operations operations;
extern struct file_system_info *file_system_info;

extern int structure;
extern int layout;
extern int debug;

extern int policy;

#endif