summaryrefslogtreecommitdiff
path: root/settings.h
diff options
context:
space:
mode:
authorPrzemyslaw Pawelczyk <przemoc@gmail.com>2015-09-13 22:12:14 +0200
committerPrzemyslaw Pawelczyk <przemoc@gmail.com>2015-09-13 22:12:14 +0200
commit16ab153f3a54194e3217fcf1a235904e4b61623b (patch)
treec27f9326815ebf4454e753028dcb3d388b3c0990 /settings.h
parent295428a550bb55a509ce15c5e27a0ab173799ebb (diff)
Move source files to src/ directory.
As a bonus you can build out-of-tree now via make -f. It's part of the work related to issue #22.
Diffstat (limited to 'settings.h')
-rw-r--r--settings.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/settings.h b/settings.h
deleted file mode 100644
index a9ef996..0000000
--- a/settings.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2013 Przemyslaw Pawelczyk <przemoc@gmail.com>
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation; only version 2 of the License is applicable.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-
-#ifndef SETTINGS_H
-#define SETTINGS_H
-
-#include <stdbool.h>
-
-/* Data structure to hold metastore settings */
-struct metasettings {
- char *metafile; /* path to the file containing the metadata */
- bool do_mtime; /* should mtimes be corrected? */
- bool do_emptydirs; /* should empty dirs be recreated? */
- bool do_removeemptydirs; /* should new empty dirs be removed? */
- bool do_git; /* should .git dirs be processed? */
-};
-
-/* Convenient typedef for immutable settings */
-typedef const struct metasettings msettings;
-
-#endif /* SETTINGS_H */