-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutil.c
85 lines (70 loc) · 1.28 KB
/
util.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
77
78
79
80
81
82
83
84
85
/* See LICENSE file for copyright and license details. */
#include <glob.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "util.h"
void
die(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
if (fmt[0] && fmt[strlen(fmt)-1] == ':') {
fputc(' ', stderr);
perror(NULL);
} else
fputc('\n', stderr);
exit(EXIT_FAILURE);
}
void *
ecalloc(size_t nmemb, size_t size)
{
void *p;
if (!(p = calloc(nmemb, size)))
die("calloc:");
return p;
}
void
eglob(const char *path, glob_t *muhglob)
{
switch (glob(path, GLOB_NOSORT, NULL, muhglob)) {
case GLOB_NOSPACE:
die("glob failed: running out of memory");
break;
case GLOB_ABORTED:
die("glob failed: read error");
break;
case GLOB_NOMATCH:
die("glob failed: no matches.");
break;
}
}
int
pscanf(const char *path, const char *fmt, ...)
{
FILE *fp;
va_list ap;
int n;
if (!(fp = fopen(path, "r")))
die("fopen '%s':", path);
va_start(ap, fmt);
n = vfscanf(fp, fmt, ap);
va_end(ap);
fclose(fp);
return (n == EOF) ? -1 : n;
}
void
pprintf(const char *path, const char *fmt, ...)
{
FILE *fp;
va_list ap;
if (!(fp = fopen(path, "w")))
die("fopen '%s':", path);
va_start(ap, fmt);
vfprintf(fp, fmt, ap);
va_end(ap);
fclose(fp);
}