sbase/util/eprintf.c

68 lines
965 B
C
Raw Normal View History

2011-05-23 01:36:34 +00:00
/* See LICENSE file for copyright and license details. */
#include <stdarg.h>
2012-05-14 20:28:41 +00:00
#include <stdio.h>
2011-05-23 01:36:34 +00:00
#include <stdlib.h>
2012-05-14 20:28:41 +00:00
#include <string.h>
2011-05-24 12:00:30 +00:00
#include "../util.h"
2011-05-23 01:36:34 +00:00
2012-05-14 20:28:41 +00:00
char *argv0;
static void venprintf(int, const char *, va_list);
2011-06-18 05:41:28 +00:00
2011-05-23 01:36:34 +00:00
void
eprintf(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
2014-10-02 22:46:04 +00:00
venprintf(1, fmt, ap);
2011-05-23 01:36:34 +00:00
va_end(ap);
}
2012-05-14 20:28:41 +00:00
void
enprintf(int status, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
venprintf(status, fmt, ap);
va_end(ap);
}
void
venprintf(int status, const char *fmt, va_list ap)
{
#ifdef DEBUG
fprintf(stderr, "%s: ", argv0);
#endif
2012-05-14 20:28:41 +00:00
vfprintf(stderr, fmt, ap);
if(fmt[0] && fmt[strlen(fmt)-1] == ':') {
fputc(' ', stderr);
perror(NULL);
}
2012-05-14 20:28:41 +00:00
exit(status);
}
void
weprintf(const char *fmt, ...)
{
va_list ap;
#ifdef DEBUG
fprintf(stderr, "%s: ", argv0);
#endif
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
if (fmt[0] && fmt[strlen(fmt)-1] == ':') {
fputc(' ', stderr);
perror(NULL);
}
2013-12-04 17:41:52 +00:00
}