tagfs/src/defs.h

20 lines
311 B
C

#ifndef H_DEFS
#define H_DEFS
/* fusefs version */
#define FUSE_USE_VERSION 39
/* posix */
#define _POSIX_C_SOURCE 200809
/* path constants */
#define TAGFS_DIR ".tagfs"
#define TAGFS_TAG_DIR TAGFS_DIR "/tags"
#define TAGFS_FILTER_DIR TAGFS_DIR "/filters"
/* size constants */
#define TAG_MAX (32)
#endif