summaryrefslogtreecommitdiff
path: root/src/include/CommandLine.h
blob: 74ff045d81826c5267f98029d86233df4ad3c9d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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_CommandLineTestThornCompiled(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_CommandLineListThorns(void);
void CCTK_CommandLineVersion(void);
void CCTK_CommandLineHelp(void);
void CCTK_CommandLineUsage(void);

#ifdef __cplusplus 
}
#endif

#endif