blob: 4000b32f26093230d170c329b237732ed297abf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <stdlib.h>
#include <stdio.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
int main(int argc, char *argv[]) {
char *buffer = 0;
if (argc > 1) {
int file_descriptor = open(argv[1], O_RDWR);
struct stat file_stat;
stat(argv[1], &file_stat);
size_t file_size = file_stat.st_size;
buffer = malloc(file_size);
read(file_descriptor, buffer, file_size);
close(file_descriptor);
}
return 0;
}
|