cloudy  trunk
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 
10 void wcnint(void);
11 
15 void warnin(char *chLine);
16 
20 void notein(char *chLine);
21 
25 void bangin(char *chLine);
26 
30 void caunin(char *chLine);
31 
34 #define LIMWCN 2000
35 
36 struct t_warnings {
37 
40  long int nwarn,
41  ncaun,
42  nnote,
43  nbang;
44 
47 
54 
56  bool lgWarngs,
57  lgCautns;
58 
59  };
60 extern t_warnings warnings;
61 
62 
63 #endif /* WARNINGS_H_ */
char chNoteln[LIMWCN][INPUT_LINE_LENGTH]
Definition: warnings.h:50
#define LIMWCN
Definition: warnings.h:34
bool lgCautns
Definition: warnings.h:56
bool lgWarngs
Definition: warnings.h:56
char chWarnln[LIMWCN][INPUT_LINE_LENGTH]
Definition: warnings.h:50
t_warnings warnings
Definition: warnings.cpp:11
void bangin(char *chLine)
Definition: warnings.cpp:73
long int nbang
Definition: warnings.h:40
long int ncaun
Definition: warnings.h:40
long int nnote
Definition: warnings.h:40
void warnin(char *chLine)
Definition: warnings.cpp:27
char chCaunln[LIMWCN][INPUT_LINE_LENGTH]
Definition: warnings.h:50
const int INPUT_LINE_LENGTH
Definition: cddefines.h:258
char chBangln[LIMWCN][INPUT_LINE_LENGTH]
Definition: warnings.h:50
long int nwarn
Definition: warnings.h:40
void notein(char *chLine)
Definition: warnings.cpp:50
void wcnint(void)
Definition: warnings.cpp:13
char chRgcln[2][INPUT_LINE_LENGTH]
Definition: warnings.h:46
void caunin(char *chLine)
Definition: warnings.cpp:96