aboutsummaryrefslogtreecommitdiff
path: root/src/logerr.c
blob: 029ed7f7207e508911e777f998c8424a1961ac26 (plain) (blame)
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
#include "config.h"
#include "logerr.h"

#include <stdio.h>


void
logerr_file(
	const char *const s,
	const char *const msg,
	const char *const file,
	const int lineno
) {
	fprintf(
		stderr,
		"%s:%s:%d: %s: %s\n",
		PROGNAME,
		file,
		lineno,
		s,
		msg
	);
}

void
logerrs_file(
	const char *const pre,
	const char *const mid,
	const char *const post,
	const char *const msg,
	const char *const file,
	const int lineno
) {
	fprintf(
		stderr,
		"%s:%s:%d: %s%s%s: %s\n",
		PROGNAME,
		file,
		lineno,
		pre,
		mid,
		post,
		msg
	);
}

void
logerrl_file(
	const char *const pre,
	const size_t mid,
	const char *const post,
	const char *const msg,
	const char *const file,
	int lineno
) {
	fprintf(
		stderr,
		"%s:%s:%d: %s%ld%s: %s\n",
		PROGNAME,
		file,
		lineno,
		pre,
		mid,
		post,
		msg
	);
}