aboutsummaryrefslogtreecommitdiff
path: root/src/logerr.h
blob: 47228abdf955067eded12dd00bd8d7aafbab4070 (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
#ifndef GISTATIC_LOGERR_H
#define GISTATIC_LOGERR_H

#include <stddef.h>

void
logerr_file(
	const char *const s,
	const char *const msg,
	const char *const file,
	const int lineno
);

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
);

void
logerrl_file(
	const char *const pre,
	const size_t mid,
	const char *const post,
	const char *const msg,
	const char *const file,
	const int lineno
);

#endif