00001 /* This file is part of Cloudy and is copyright (C)1978-2007 by Gary J. Ferland 00002 * For conditions of distribution and use see copyright notice in license.txt */ 00003 /* warnings.h */ 00004 00006 void wcnint(void); 00007 00011 void warnin(char *chLine); 00012 00016 void notein(char *chLine); 00017 00021 void bangin(char *chLine); 00022 00026 void caunin(char *chLine); 00027 00030 #define LIMWCN 2000 00031 00032 EXTERN struct t_warnings { 00033 00036 long int nwarn, 00037 ncaun, 00038 nnote, 00039 nbang; 00040 00042 char chRgcln[2][INPUT_LINE_LENGTH]; 00043 00046 char chWarnln[LIMWCN][INPUT_LINE_LENGTH], 00047 chCaunln[LIMWCN][INPUT_LINE_LENGTH], 00048 chNoteln[LIMWCN][INPUT_LINE_LENGTH], 00049 chBangln[LIMWCN][INPUT_LINE_LENGTH]; 00050 00052 bool lgWarngs, 00053 lgCautns; 00054 00055 } warnings; 00056