aboutsummaryrefslogtreecommitdiff
path: root/opts.h
diff options
context:
space:
mode:
Diffstat (limited to 'opts.h')
-rw-r--r--opts.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/opts.h b/opts.h
deleted file mode 100644
index 196c047..0000000
--- a/opts.h
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- Mount option parsing
- Copyright (C) 2004 Miklos Szeredi <miklos@szeredi.hu>
-
- This program can be distributed under the terms of the GNU GPL.
- See the file COPYING.
-*/
-
-struct opt {
- const char *optname;
- int present;
- char *value;
-};
-
-void process_options(int *argcp, char *argv[], struct opt opts[],
- int case_sensitive);
-
-int opt_get_unsigned(const struct opt *o, unsigned *valp);
-
-char *opt_get_string(const struct opt *o);