summaryrefslogtreecommitdiffstats
path: root/src/klammail/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/klammail/options.h')
-rwxr-xr-xsrc/klammail/options.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/klammail/options.h b/src/klammail/options.h
new file mode 100755
index 0000000..e42994f
--- /dev/null
+++ b/src/klammail/options.h
@@ -0,0 +1,46 @@
+/*
+ * Copyright (C) 2002, 2003 Tomasz Kojm <zolw@konarski.edu.pl>
+ *
+ * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#ifndef __OPTIONS_H
+#define __OPTIONS_H
+
+struct optnode {
+ char optchar;
+ char *optarg;
+ char *optname;
+ struct optnode *next;
+};
+
+struct optstruct {
+ struct optnode *optlist;
+ char *filename;
+};
+
+int optc(const struct optstruct *opt, char ch);
+int optl(const struct optstruct *opt, const char *optname);
+void register_char_option(struct optstruct *opt, char ch);
+void register_long_option(struct optstruct *opt, const char *optname);
+char *getargc(const struct optstruct *opt, char ch);
+char *getfirstargc(const struct optstruct *opt, char ch, struct optnode **optnode);
+char *getnextargc(struct optnode **optnode, char ch);
+char *getargl(const struct optstruct *opt, const char *optname);
+char *getfirstargl(const struct optstruct *opt, const char *optname, struct optnode **optnode);
+char *getnextargl(struct optnode **optnode, const char *optname);
+void free_opt(struct optstruct *opt);
+
+#endif