cloudy trunk
Loading...
Searching...
No Matches
warnings.h
Go to the documentation of this file.
1/* This file is part of Cloudy and is copyright (C)1978-2013 by Gary J. Ferland and
2 * others. For conditions of distribution and use see copyright notice in license.txt */
3
4#ifndef WARNINGS_H_
5#define WARNINGS_H_
6
7/* warnings.h */
8
10void wcnint(void);
11
15void warnin(char *chLine);
16
20void notein(char *chLine);
21
25void bangin(char *chLine);
26
30void caunin(char *chLine);
31
34#define LIMWCN 2000
35
36struct t_warnings {
37
40 long int nwarn,
44
47
54
56 bool lgWarngs,
58
59 };
60extern t_warnings warnings;
61
62
63#endif /* WARNINGS_H_ */
const int INPUT_LINE_LENGTH
Definition: cddefines.h:254
long int nwarn
Definition: warnings.h:40
bool lgCautns
Definition: warnings.h:57
long int ncaun
Definition: warnings.h:41
long int nnote
Definition: warnings.h:42
char chWarnln[LIMWCN][INPUT_LINE_LENGTH]
Definition: warnings.h:50
char chNoteln[LIMWCN][INPUT_LINE_LENGTH]
Definition: warnings.h:52
char chRgcln[2][INPUT_LINE_LENGTH]
Definition: warnings.h:46
bool lgWarngs
Definition: warnings.h:56
char chCaunln[LIMWCN][INPUT_LINE_LENGTH]
Definition: warnings.h:51
long int nbang
Definition: warnings.h:43
char chBangln[LIMWCN][INPUT_LINE_LENGTH]
Definition: warnings.h:53
t_warnings warnings
Definition: warnings.cpp:11
void wcnint(void)
Definition: warnings.cpp:13
void caunin(char *chLine)
Definition: warnings.cpp:96
#define LIMWCN
Definition: warnings.h:34
void warnin(char *chLine)
Definition: warnings.cpp:27
void bangin(char *chLine)
Definition: warnings.cpp:73
void notein(char *chLine)
Definition: warnings.cpp:50