summaryrefslogtreecommitdiff
path: root/src/main/ProcessCommandLine.c
diff options
context:
space:
mode:
authorcactus_cvs <cactus_cvs@17b73243-c579-4c4c-a9d2-2d5706c11dac>1998-09-25 08:07:40 +0000
committercactus_cvs <cactus_cvs@17b73243-c579-4c4c-a9d2-2d5706c11dac>1998-09-25 08:07:40 +0000
commitc915d9737763b475991568082d194a786a387938 (patch)
treef467243c2db8dc8796ce21d49214f63a4457f802 /src/main/ProcessCommandLine.c
parent27d1d68f67ecd5e856ecdb8435dc6f1fd52efdce (diff)
Initial import
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/ProcessCommandLine.c')
-rw-r--r--src/main/ProcessCommandLine.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/main/ProcessCommandLine.c b/src/main/ProcessCommandLine.c
new file mode 100644
index 00000000..c82a9546
--- /dev/null
+++ b/src/main/ProcessCommandLine.c
@@ -0,0 +1,41 @@
+ /*@@
+ @file ProcessCommandLine.c
+ @date Thu Sep 24 10:32:28 1998
+ @author Tom Goodale
+ @desc
+ Routines to deal with the command line arguments.
+ @enddesc
+ @@*/
+#include <stdio.h>
+
+#include "flesh.h"
+
+static int argc;
+
+static char **argv;
+
+
+ /*@@
+ @routine ProcessCommandLine
+ @date Thu Sep 24 10:33:31 1998
+ @author Tom Goodale
+ @desc
+ Processes the command line arguments.
+ @enddesc
+ @calls
+ @calledby
+ @history
+
+ @endhistory
+
+@@*/
+int ProcessCommandLine(int *inargc, char *inargv[], tFleshConfig *ConfigData)
+{
+ argc = inargc;
+
+ argv = inargv;
+
+ return 0;
+}
+
+