aboutsummaryrefslogtreecommitdiff
path: root/include/gensvm_cmdarg.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gensvm_cmdarg.h')
-rw-r--r--include/gensvm_cmdarg.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/gensvm_cmdarg.h b/include/gensvm_cmdarg.h
new file mode 100644
index 0000000..ac33be8
--- /dev/null
+++ b/include/gensvm_cmdarg.h
@@ -0,0 +1,21 @@
+/**
+ * @file gensvm_cmdarg.h
+ * @author Gertjan van den Burg
+ * @date May, 2016
+ * @brief Header file for gensvm_cmdarg.c
+ *
+ * @details
+ * Function declarations for dealing with command line arguments.
+ *
+ */
+
+#ifndef GENSVM_CMDARG_H
+#define GENSVM_CMDARG_H
+
+#include "globals.h"
+
+// function declarations
+int gensvm_check_argv(int argc, char **argv, char *str);
+int gensvm_check_argv_eq(int argc, char **argv, char *str);
+
+#endif