sbase/libutil/eprintf.c

60 lines
832 B
C
Raw Normal View History

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