-
Notifications
You must be signed in to change notification settings - Fork 3
/
moreassert.c
121 lines (109 loc) · 5.59 KB
/
moreassert.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/**
* copyright 2002-2004 Bryce "Zooko" Wilcox-O'Hearn
* mailto:[email protected]
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software to deal in this software without restriction (including the
* rights to use, modify, distribute, sublicense, and/or sell copies) provided
* that the above copyright notice and this permission notice is included in
* all copies or substantial portions of this software. THIS SOFTWARE IS
* PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED.
*/
#include "moreassert.h"
#include <stdio.h>
#include <stdlib.h>
void _verbose_abort(char const*const filename, const int lineno, char const*const funcname, char const* msg) {
if (msg == NULL) { msg = ""; }
fprintf(stderr, "%s: %d: %s: %s", filename, lineno, funcname, msg);
exit(EXIT_FAILURE);
}
void _verbose_abort2(char const*const filename, const int lineno, char const*const funcname, char const* msg1, char const* msg2) {
if (msg1 == NULL) { msg1 = ""; }
if (msg2 == NULL) { msg2 = ""; }
fprintf(stderr, "%s: %d: %s: %s%s", filename, lineno, funcname, msg1, msg2);
exit(EXIT_FAILURE);
}
void _verbose_abort3(char const*const filename, const int lineno, char const*const funcname, char const* msg1, char const* msg2, char const* msg3) {
if (msg1 == NULL) { msg1 = ""; }
if (msg2 == NULL) { msg2 = ""; }
if (msg3 == NULL) { msg3 = ""; }
fprintf(stderr, "%s: %d: %s: %s%s%s", filename, lineno, funcname, msg1, msg2, msg3);
exit(EXIT_FAILURE);
}
void _verbose_abort4(char const*const filename, const int lineno, char const*const funcname, char const* msg1, char const* msg2, char const* msg3, char const* msg4) {
if (msg1 == NULL) { msg1 = ""; }
if (msg2 == NULL) { msg2 = ""; }
if (msg3 == NULL) { msg3 = ""; }
if (msg4 == NULL) { msg4 = ""; }
fprintf(stderr, "%s: %d: %s: %s%s%s%s", filename, lineno, funcname, msg1, msg2, msg3, msg4);
exit(EXIT_FAILURE);
}
void _verbose_abort5(char const*const filename, const int lineno, char const*const funcname, char const* msg1, char const* msg2, char const* msg3, char const* msg4, char const* msg5) {
if (msg1 == NULL) { msg1 = ""; }
if (msg2 == NULL) { msg2 = ""; }
if (msg3 == NULL) { msg3 = ""; }
if (msg4 == NULL) { msg4 = ""; }
if (msg5 == NULL) { msg5 = ""; }
fprintf(stderr, "%s: %d: %s: %s%s%s%s%s", filename, lineno, funcname, msg1, msg2, msg3, msg4, msg5);
exit(EXIT_FAILURE);
}
void _verbose_abort6(char const*const filename, const int lineno, char const*const funcname, char const* msg1, char const* msg2, char const* msg3, char const* msg4, char const* msg5, char const* msg6) {
if (msg1 == NULL) { msg1 = ""; }
if (msg2 == NULL) { msg2 = ""; }
if (msg3 == NULL) { msg3 = ""; }
if (msg4 == NULL) { msg4 = ""; }
if (msg5 == NULL) { msg5 = ""; }
if (msg6 == NULL) { msg6 = ""; }
fprintf(stderr, "%s: %d: %s: %s%s%s%s%s%s", filename, lineno, funcname, msg1, msg2, msg3, msg4, msg5, msg6);
exit(EXIT_FAILURE);
}
void _verbose_abort7(char const*const filename, const int lineno, char const*const funcname, char const* msg1, char const* msg2, char const* msg3, char const* msg4, char const* msg5, char const* msg6, char const* msg7) {
if (msg1 == NULL) { msg1 = ""; }
if (msg2 == NULL) { msg2 = ""; }
if (msg3 == NULL) { msg3 = ""; }
if (msg4 == NULL) { msg4 = ""; }
if (msg5 == NULL) { msg5 = ""; }
if (msg6 == NULL) { msg6 = ""; }
if (msg7 == NULL) { msg7 = ""; }
fprintf(stderr, "%s: %d: %s: %s%s%s%s%s%s%s", filename, lineno, funcname, msg1, msg2, msg3, msg4, msg5, msg6, msg7);
exit(EXIT_FAILURE);
}
void _verbose_abort8(char const*const filename, const int lineno, char const*const funcname, char const* msg1, char const* msg2, char const* msg3, char const* msg4, char const* msg5, char const* msg6, char const* msg7, char const* msg8) {
if (msg1 == NULL) { msg1 = ""; }
if (msg2 == NULL) { msg2 = ""; }
if (msg3 == NULL) { msg3 = ""; }
if (msg4 == NULL) { msg4 = ""; }
if (msg5 == NULL) { msg5 = ""; }
if (msg6 == NULL) { msg6 = ""; }
if (msg7 == NULL) { msg7 = ""; }
if (msg8 == NULL) { msg8 = ""; }
fprintf(stderr, "%s: %d: %s: %s%s%s%s%s%s%s%s", filename, lineno, funcname, msg1, msg2, msg3, msg4, msg5, msg6, msg7, msg8);
exit(EXIT_FAILURE);
}
void _verbose_abort9(char const*const filename, const int lineno, char const*const funcname, char const* msg1, char const* msg2, char const* msg3, char const* msg4, char const* msg5, char const* msg6, char const* msg7, char const* msg8, char const* msg9) {
if (msg1 == NULL) { msg1 = ""; }
if (msg2 == NULL) { msg2 = ""; }
if (msg3 == NULL) { msg3 = ""; }
if (msg4 == NULL) { msg4 = ""; }
if (msg5 == NULL) { msg5 = ""; }
if (msg6 == NULL) { msg6 = ""; }
if (msg7 == NULL) { msg7 = ""; }
if (msg8 == NULL) { msg8 = ""; }
if (msg9 == NULL) { msg9 = ""; }
fprintf(stderr, "%s: %d: %s: %s%s%s%s%s%s%s%s%s", filename, lineno, funcname, msg1, msg2, msg3, msg4, msg5, msg6, msg7, msg8, msg9);
exit(EXIT_FAILURE);
}
void _verbose_abort10(char const*const filename, const int lineno, char const*const funcname, char const* msg1, char const* msg2, char const* msg3, char const* msg4, char const* msg5, char const* msg6, char const* msg7, char const* msg8, char const* msg9, char const* msg10) {
if (msg1 == NULL) { msg1 = ""; }
if (msg2 == NULL) { msg2 = ""; }
if (msg3 == NULL) { msg3 = ""; }
if (msg4 == NULL) { msg4 = ""; }
if (msg5 == NULL) { msg5 = ""; }
if (msg6 == NULL) { msg6 = ""; }
if (msg7 == NULL) { msg7 = ""; }
if (msg8 == NULL) { msg8 = ""; }
if (msg9 == NULL) { msg9 = ""; }
if (msg10 == NULL) { msg10 = ""; }
fprintf(stderr, "%s: %d: %s: %s%s%s%s%s%s%s%s%s%s", filename, lineno, funcname, msg1, msg2, msg3, msg4, msg5, msg6, msg7, msg8, msg9, msg10);
exit(EXIT_FAILURE);
}