blob: 1ae2280ee119b16a72fce4338af26f3787e2e3eb (
plain) (
blame)
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
|
#include <s.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include "slurp.h"
int
slurp_for_tests(const char *const filename, char **out) {
int rc = -1;
FILE *file = NULL;
char *str = NULL;
file = fopen(filename, "r");
if (file == NULL) {
// Comment to prevent clobbering in test output
// perror("fopen(filename, \"r\")");
goto out;
}
if (fseek(file, 0L, SEEK_END)) {
perror("fseek(file, 0L, SEEK_END)");
goto out;
}
const long lsize = ftell(file);
if (lsize == -1) {
perror("ftell(file)");
goto out;
}
const size_t size = (size_t)lsize;
errno = 0;
rewind(file);
if (errno) {
perror("rewind(file)");
goto out;
}
str = malloc(size + NULL_TERMINATOR);
if (str == NULL) {
perror("malloc(...)");
goto out;
}
if (fread(str, sizeof(char), size, file) != size) {
perror("fread(...)");
goto out;
}
str[size] = '\0';
*out = str;
rc = 0;
out:
if (file != NULL) {
if (fclose(file)) {
perror("flcose(file");
rc = -1;
}
}
if (rc) {
if (str != NULL) {
free(str);
}
}
return rc;
}
|