sbase/util/eprintf.c

48 lines
705 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);
2011-06-18 05:41:28 +00:00
venprintf(EXIT_FAILURE, 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)
{
/*fprintf(stderr, "%s: ", argv0);*/
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);
}