summaryrefslogtreecommitdiffstats
path: root/server/parser/argparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'server/parser/argparser.h')
-rw-r--r--server/parser/argparser.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/server/parser/argparser.h b/server/parser/argparser.h
new file mode 100644
index 0000000..53214e1
--- /dev/null
+++ b/server/parser/argparser.h
@@ -0,0 +1,28 @@
+/*
+ * Copyright (C) 2009 Red Hat Inc.
+ *
+ * This application 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; version 2.
+ *
+ * This application 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.
+ */
+
+/**
+ * @file argparser.h
+ * @author David Sommerseth <davids@redhat.com>
+ * @date Thu Oct 22 13:58:46 2009
+ *
+ * @brief Generic argument parser
+ *
+ */
+
+#ifndef _RTEVAL_ARGPARSER_h
+#define _RTEVAL_ARGPARSER_h
+
+eurephiaVALUES *parse_arguments(int argc, char **argv);
+
+#endif