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
|
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/fcntl.h>
int verbose=0;
void usage(char *prog) {
fprintf(stderr, "usage: %s [-v] <file>\n", prog);
exit(-1);
}
char *slurp(char *file, size_t *len) {
struct stat s;
char *buf;
int fd;
if (stat(file, &s) == -1) {
fprintf(stderr,"can't stat %s: %s\n", file, strerror(errno));
exit(-1);
}
*len = s.st_size;
if ( (fd = open(file, O_RDONLY)) == -1) {
fprintf(stderr,"can't open %s: %s\n", file, strerror(errno));
exit(-1);
}
buf = malloc(*len);
if (buf) {
if (read(fd, buf,*len) != *len) {
fprintf(stderr,"incomplete read\n");
exit(-1);
}
}
close(fd);
return buf;
}
int main(int argc, char * argv[]) {
int opt;
char *file, *buf;
size_t len;;
while ( (opt = getopt(argc, argv, "v+")) != -1) {
switch (opt) {
case 'v':
verbose++;
break;
default:
usage(argv[0]);
break;
}
}
if (optind < argc) file=argv[optind++];
else usage(argv[0]);
buf = slurp(file, &len);
printf("slurped %s: %u bytes\n", file, (unsigned)len);
}
|