-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patherror.c
More file actions
52 lines (38 loc) · 1.07 KB
/
error.c
File metadata and controls
52 lines (38 loc) · 1.07 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
-------------------------------------------------------------------------
OBJECT NAME: error.c
FULL NAME: Handle Errors
ENTRY POINTS: HandleError()
STATIC FNS: none
DESCRIPTION: This procudures displays errors based on wether we are in
interactive mode or not. For interactive mode it displays
an X window, otherwise a fprintf to stderr. The second
parameter tells the procedure wether to return or do an
exit.
INPUT: Message, Weather to exit or return.
OUTPUT: Error message.
COPYRIGHT: University Corporation for Atmospheric Research, 1992-8
-------------------------------------------------------------------------
*/
#include "define.h"
/* -------------------------------------------------------------------- */
void HandleError(const char s[], bool interactiv, char status)
{
if (!interactiv)
{
fprintf(stderr, "%s\n", s);
if (status == IRET)
status = EXIT;
}
else
{
ShowError(s);
if (status == IRET)
status = RETURN;
}
if (status == RETURN)
return;
else
exit(1);
} /* END HANDLERROR */
/* END ERROR.C */