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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
#include <errno.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "util/versie.h"
static void usage(FILE *f) {
fprintf(f,
"Gebruik: rn [-hV] [BESTAND]...\n"
"\n"
"Nummereer elke regel van elk BESTAND.\n"
"Als geen bestanden gegeven zijn, of het bestand is -, nummereer dan standaard invoer.\n"
"\n"
" -p Regelnummers per BESTAND.\n"
" -h Toon deze hulptekst\n"
" -V Toon versienummer\n");
}
// Returns pointer to argument array containing the file names
static char** parse_options(int argc, char **argv, bool *perFile) {
int opt;
while ((opt = getopt(argc, argv, "phV")) != -1) {
switch (opt) {
case 'p':
*perFile = true;
break;
case 'h':
usage(stdout);
exit(0);
case 'V':
drukkedoos_print_versie(stdout);
exit(0);
case '?':
usage(stderr);
exit(1);
}
}
return argv + optind;
}
static void process(const char *fname, FILE *file, bool perFile, size_t *n) {
if (perFile) *n = 1;
char *line = NULL;
size_t linen = 0;
ssize_t nread = 0;
while ((errno = 0, nread = getline(&line, &linen, file)) != -1) {
printf("%6lu %s", *n, line);
*n += 1;
}
free(line);
if (errno != 0) {
printf("tak: fout bij lezen uit bestand '%s'\n", fname);
exit(1);
}
}
int entry_rn(int argc, char **argv) {
bool perFile = false;
char **args = parse_options(argc, argv, &perFile);
size_t n = 1;
if (*args == NULL) {
process("stdin", stdin, perFile, &n);
return 0;
}
while (*args != NULL) {
if (!strcmp(*args, "-")) {
process("stdin", stdin, perFile, &n);
} else {
FILE *file = fopen(*args, "r");
if (file == NULL) {
fprintf(stderr, "rn: %s: kon bestand niet openen\n", *args);
return 1;
}
process(*args, file, perFile, &n);
fclose(file);
}
args++;
}
return 0;
}
|