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
53
54
55
56
57
58
59
60
|
/*
* error.c: buttress error handling
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include "buttress.h"
/*
* Error flags
*/
#define PREFIX 0x0001 /* give `buttress:' prefix */
static void do_error(int code, va_list ap) {
char error[1024];
char *sp;
int flags;
switch(code) {
case err_nomemory: /* no arguments */
sprintf(error, "out of memory");
flags = PREFIX;
break;
case err_optnoarg:
sp = va_arg(ap, char *);
sprintf(error, "option `-%.200s' requires an argument", sp);
flags = PREFIX;
break;
case err_nosuchopt:
sp = va_arg(ap, char *);
sprintf(error, "unrecognised option `-%.200s'", sp);
flags = PREFIX;
break;
case err_noinput: /* no arguments */
sprintf(error, "no input files");
flags = PREFIX;
break;
}
if (flags & PREFIX)
fputs("buttress: ", stderr);
fputs(error, stderr);
fputc('\n', stderr);
}
void fatal(int code, ...) {
va_list ap;
va_start(ap, code);
do_error(code, ap);
va_end(ap);
exit(EXIT_FAILURE);
}
void error(int code, ...) {
va_list ap;
va_start(ap, code);
do_error(code, ap);
va_end(ap);
}
|