summaryrefslogtreecommitdiff
path: root/options.h
diff options
context:
space:
mode:
authorMoritz Schulte <moritz@duesseldorf.ccc.de>2002-12-07 17:47:13 +0000
committerMoritz Schulte <moritz@duesseldorf.ccc.de>2002-12-07 17:47:13 +0000
commit38bdab8153e5a253552b5e431e7a8f53a6d42285 (patch)
tree9695c0e0132a1273cbbd67d25c64029777b8c951 /options.h
initial import
Diffstat (limited to 'options.h')
-rw-r--r--options.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/options.h b/options.h
new file mode 100644
index 0000000..2e86828
--- /dev/null
+++ b/options.h
@@ -0,0 +1,42 @@
+/* Hurd unionfs
+ Copyright (C) 2001, 2002 Free Software Foundation, Inc.
+ Written by Moritz Schulte <moritz@duesseldorf.ccc.de>.
+
+ 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; either version 2 of the
+ License, or * (at your option) any later version.
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+ USA. */
+
+/* Argument parsing. */
+
+/* The possible short options. */
+#define OPT_UNDERLYING 'u'
+#define OPT_WRITABLE 'w'
+#define OPT_DEBUG 'd'
+#define OPT_CACHE_SIZE 'c'
+#define OPT_REMOVE 'r'
+
+/* The long options. */
+#define OPT_LONG_UNDERLYING "underlying"
+#define OPT_LONG_WRITABLE "writable"
+#define OPT_LONG_DEBUG "debug"
+#define OPT_LONG_CACHE_SIZE "cache-size"
+#define OPT_LONG_REMOVE "remove"
+
+#define OPT_LONG(o) "--" o
+
+/* The final argp parser for runtime arguments. */
+extern struct argp argp_startup;
+
+/* The final argp parser for startup arguments. */
+extern struct argp argp_runtime;