-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwarnp.c
76 lines (63 loc) · 1.31 KB
/
warnp.c
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "warnp.h"
static int initialized = 0;
static char * name = NULL;
/* Free the name string. */
static void
done(void)
{
free(name);
name = NULL;
}
/**
* warnp_setprogname(progname):
* Set the program name to be used by warn() and warnx() to ${progname}.
*/
void
warnp_setprogname(const char * progname)
{
const char * p;
/* Free the name if we already have one. */
free(name);
/* Find the last segment of the program name. */
for (p = progname; progname[0] != '\0'; progname++)
if (progname[0] == '/')
p = progname + 1;
/* Copy the name string. */
name = strdup(p);
/* If we haven't already done so, register our exit handler. */
if (initialized == 0) {
atexit(done);
initialized = 1;
}
}
void
warn(const char * fmt, ...)
{
va_list ap;
va_start(ap, fmt);
fprintf(stderr, "%s", (name != NULL) ? name : "(unknown)");
if (fmt != NULL) {
fprintf(stderr, ": ");
vfprintf(stderr, fmt, ap);
}
fprintf(stderr, ": %s\n", strerror(errno));
va_end(ap);
}
void
warnx(const char * fmt, ...)
{
va_list ap;
va_start(ap, fmt);
fprintf(stderr, "%s", (name != NULL) ? name : "(unknown)");
if (fmt != NULL) {
fprintf(stderr, ": ");
vfprintf(stderr, fmt, ap);
}
fprintf(stderr, "\n");
va_end(ap);
}