summaryrefslogtreecommitdiff
path: root/src/include/WarnLevel.h
blob: 4c6aab4b1f673b3ea0d060ed34746db8a9bde84d (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
 /*@@
   @header    WarnLevel.h
   @date      Wed Feb 17 00:53:55 1999
   @author    Tom Goodale
   @desc 
   Header for the warning functions.
   @enddesc 
 @@*/

#ifndef _WARNLEVEL_H_
#define _WARNLEVEL_H_

#ifdef __cplusplus 
extern "C" {
#endif

int CCTK_SetWarnLevel(int level);
int CCTK_Warn(int level, const char *thorn, const char *message);
int CCTK_SetErrorLevel(int level);

#ifdef __cplusplus 
}
#endif

#endif