blob: 410c2187dcdd0bc843e2eba59b8662bb13d29e6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "file.h"
#include <stdio.h>
#include <utils/memory/memory.h>
char *read_whole_file(const char *path) {
FILE *file = fopen(path, "r");
if (!file) {
fprintf(stderr, "could not open file at path '%s'\n", path);
return NULL;
}
fseek(file, 0, SEEK_END);
const size_t file_size = ftell(file);
fseek(file, 0, SEEK_SET);
char *str = a404m_malloc((file_size + 1) * sizeof(char));
fread(str, file_size, 1, file);
str[file_size] = '\0';
fclose(file);
return str;
}
|