summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/libinstaller/getopt/getopt.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux-4.02/libinstaller/getopt/getopt.h')
-rw-r--r--contrib/syslinux-4.02/libinstaller/getopt/getopt.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/contrib/syslinux-4.02/libinstaller/getopt/getopt.h b/contrib/syslinux-4.02/libinstaller/getopt/getopt.h
new file mode 100644
index 0000000..a1b74b1
--- /dev/null
+++ b/contrib/syslinux-4.02/libinstaller/getopt/getopt.h
@@ -0,0 +1,25 @@
+#ifndef _GETOPT_H
+#define _GETOPT_H
+
+/* (Very slightly) adapted from klibc */
+
+struct option {
+ const char *name;
+ int has_arg;
+ int *flag;
+ int val;
+};
+
+enum {
+ no_argument = 0,
+ required_argument = 1,
+ optional_argument = 2,
+};
+
+extern char *optarg;
+extern int optind, opterr, optopt;
+
+extern int getopt_long(int, char *const *, const char *,
+ const struct option *, int *);
+
+#endif /* _GETOPT_H */