summaryrefslogtreecommitdiff
path: root/src/include/CommandLine.h
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-17 00:34:04 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-17 00:34:04 +0000
commit0fc0e89ea5732a235faab744784aa5d9da086055 (patch)
tree14cb6ab200f6658d865902ab517c821186fe898c /src/include/CommandLine.h
parentb03ba3e46985de8c25ad6b56a2e5f03cd432982e (diff)
Command line stuff.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@293 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/CommandLine.h')
-rw-r--r--src/include/CommandLine.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/include/CommandLine.h b/src/include/CommandLine.h
new file mode 100644
index 00000000..e7007de0
--- /dev/null
+++ b/src/include/CommandLine.h
@@ -0,0 +1,33 @@
+ /*@@
+ @header CommandLine.h
+ @date Wed Feb 17 00:53:55 1999
+ @author Tom Goodale
+ @desc
+ Header for the warning functions.
+ @enddesc
+ @@*/
+
+#ifndef _COMMANDLINE_H_
+#define _COMMANDLINE_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void CCTK_CommandLineTestThornActive(const char *optarg);
+void CCTK_CommandLineDescribeAllParameters(void);
+void CCTK_CommandLineDescribeParameter(const char *optarg);
+void CCTK_CommandLineTestParameters(const char *optarg);
+void CCTK_CommandLineWarningLevel(const char *optarg);
+void CCTK_CommandLineErrorLevel(const char *optarg);
+void CCTK_CommandLineRedirectStderr(void);
+void CCTK_CommandLineListActiveThorns(void);
+void CCTK_CommandLineVersion(void);
+void CCTK_CommandLineHelp(void);
+void CCTK_CommandLineUsage(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif