Mac binaries
[jabaws.git] / website / archive / binaries / mac / src / clustalw / src / general / param.h
diff --git a/website/archive/binaries/mac/src/clustalw/src/general/param.h b/website/archive/binaries/mac/src/clustalw/src/general/param.h
new file mode 100644 (file)
index 0000000..069d778
--- /dev/null
@@ -0,0 +1,24 @@
+/**
+ * Author: Mark Larkin
+ * 
+ * Copyright (c) 2007 Des Higgins, Julie Thompson and Toby Gibson.  
+ */
+#define MAXARGS 100
+
+typedef struct {
+ char *str;
+ int *flag;
+ int type;
+ char **arg;
+} CmdLineData;
+
+#define NOARG 0
+#define INTARG 1
+#define FLTARG 2
+#define STRARG 3
+#define FILARG 4
+#define OPTARG 5
+
+
+
+