summaryrefslogtreecommitdiffstats
path: root/src/include/error.h
blob: 1e33f6c4f820aacf7eee98f053836bfb77df9165 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __ERROR_H
#define __ERROR_H

#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>

void err_exit(int err, char *fmt, ...);
void err_msg(char *fmt, ...);
void err_msg_n(int err, char *fmt, ...);
void err_quit(char *fmt, ...);
void info(char *fmt, ...);
void warn(char *fmt, ...);
void fatal(char *fmt, ...);
void err_doit(int err, const char *fmt, va_list ap);

#endif	/* __ERROR_H */