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
|
#include "../src/config.h"
#include <stdio.h>
#include <stdlib.h>
#include "slurp.h"
int
slurp_for_tests(const char *const FNAME, char **strref) {
int rc = -1;
FILE *file = NULL;
char *str = NULL;
file = fopen(FNAME, "r");
if (!file) {
perror("fopen(FNAME, \"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 + sizeof(char);
if (fseek(file, 0L, SEEK_SET)) {
perror("fseek(file, 0L, SEEK_SET)");
goto out;
}
str = malloc(size);
if (!str) {
perror("malloc(...)");
goto out;
}
if (fread(str, sizeof(char), size - 1, file) != size - 1) {
perror("fread(...)");
goto out;
}
str[size - 1] = '\0';
*strref = str;
rc = 0;
out:
if (file) {
if (fclose(file)) {
perror("flcose(file");
rc = -1;
}
}
if (rc) {
if (str) {
free(str);
}
}
return rc;
}
|