-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherror.c
47 lines (41 loc) · 1.49 KB
/
error.c
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
/*********************************************************************/
/* */
/* This Program Written by Paul Edwards, 3:711/934@fidonet. */
/* Released to the Public Domain */
/* Written Dec 1993 */
/* */
/*********************************************************************/
/*********************************************************************/
/* */
/* error.c - error handling routines. */
/* */
/* Refer to error.h for documentation. */
/* */
/*********************************************************************/
#include <stdarg.h>
#include <string.h>
#include <stdio.h>
#include "error.h"
ERROR error;
void errorSet(char *fmt, ...)
{
va_list va;
if (ALLOK)
{
strcpy(error.fmt, fmt);
va_start(va, fmt);
vsprintf(error.buf, fmt, va);
va_end(va);
error.errorOccurred = 1;
}
return;
}
void errorFlush(void)
{
if (error.errorOccurred)
{
printf("%s", error.buf);
errorClear();
}
return;
}