Absolute File Name: | /home/opencoverage/opencoverage/guest-scripts/coreutils/src/src/pr.c |
Switch to Source code | Preprocessed file |
Line | Source | Count | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | - | |||||||||||||||||||||||||
2 | - | |||||||||||||||||||||||||
3 | struct COLUMN; | - | ||||||||||||||||||||||||
4 | struct COLUMN | - | ||||||||||||||||||||||||
5 | { | - | ||||||||||||||||||||||||
6 | FILE *fp; | - | ||||||||||||||||||||||||
7 | char const *name; | - | ||||||||||||||||||||||||
8 | enum | - | ||||||||||||||||||||||||
9 | { | - | ||||||||||||||||||||||||
10 | OPEN, | - | ||||||||||||||||||||||||
11 | FF_FOUND, | - | ||||||||||||||||||||||||
12 | - | |||||||||||||||||||||||||
13 | ON_HOLD, | - | ||||||||||||||||||||||||
14 | CLOSED | - | ||||||||||||||||||||||||
15 | } | - | ||||||||||||||||||||||||
16 | status; | - | ||||||||||||||||||||||||
17 | - | |||||||||||||||||||||||||
18 | - | |||||||||||||||||||||||||
19 | - | |||||||||||||||||||||||||
20 | _Bool | - | ||||||||||||||||||||||||
21 | (*print_func) (struct COLUMN *); | - | ||||||||||||||||||||||||
22 | - | |||||||||||||||||||||||||
23 | - | |||||||||||||||||||||||||
24 | void (*char_func) (char); | - | ||||||||||||||||||||||||
25 | - | |||||||||||||||||||||||||
26 | int current_line; | - | ||||||||||||||||||||||||
27 | int lines_stored; | - | ||||||||||||||||||||||||
28 | int lines_to_print; | - | ||||||||||||||||||||||||
29 | int start_position; | - | ||||||||||||||||||||||||
30 | - | |||||||||||||||||||||||||
31 | _Bool | - | ||||||||||||||||||||||||
32 | numbered; | - | ||||||||||||||||||||||||
33 | - | |||||||||||||||||||||||||
34 | _Bool | - | ||||||||||||||||||||||||
35 | full_page_printed; | - | ||||||||||||||||||||||||
36 | - | |||||||||||||||||||||||||
37 | - | |||||||||||||||||||||||||
38 | - | |||||||||||||||||||||||||
39 | - | |||||||||||||||||||||||||
40 | - | |||||||||||||||||||||||||
41 | }; | - | ||||||||||||||||||||||||
42 | - | |||||||||||||||||||||||||
43 | typedef struct COLUMN COLUMN; | - | ||||||||||||||||||||||||
44 | - | |||||||||||||||||||||||||
45 | static int char_to_clump (char c); | - | ||||||||||||||||||||||||
46 | static | - | ||||||||||||||||||||||||
47 | _Bool | - | ||||||||||||||||||||||||
48 | read_line (COLUMN *p); | - | ||||||||||||||||||||||||
49 | static | - | ||||||||||||||||||||||||
50 | _Bool | - | ||||||||||||||||||||||||
51 | print_page (void); | - | ||||||||||||||||||||||||
52 | static | - | ||||||||||||||||||||||||
53 | _Bool | - | ||||||||||||||||||||||||
54 | print_stored (COLUMN *p); | - | ||||||||||||||||||||||||
55 | static | - | ||||||||||||||||||||||||
56 | _Bool | - | ||||||||||||||||||||||||
57 | open_file (char *name, COLUMN *p); | - | ||||||||||||||||||||||||
58 | static | - | ||||||||||||||||||||||||
59 | _Bool | - | ||||||||||||||||||||||||
60 | skip_to_page (uintmax_t page); | - | ||||||||||||||||||||||||
61 | static void print_header (void); | - | ||||||||||||||||||||||||
62 | static void pad_across_to (int position); | - | ||||||||||||||||||||||||
63 | static void add_line_number (COLUMN *p); | - | ||||||||||||||||||||||||
64 | static void getoptnum (const char *n_str, int min, int *num, | - | ||||||||||||||||||||||||
65 | const char *errfmt); | - | ||||||||||||||||||||||||
66 | static void getoptarg (char *arg, char switch_char, char *character, | - | ||||||||||||||||||||||||
67 | int *number); | - | ||||||||||||||||||||||||
68 | static void print_files (int number_of_files, char **av); | - | ||||||||||||||||||||||||
69 | static void init_parameters (int number_of_files); | - | ||||||||||||||||||||||||
70 | static void init_header (char const *filename, int desc); | - | ||||||||||||||||||||||||
71 | static | - | ||||||||||||||||||||||||
72 | _Bool | - | ||||||||||||||||||||||||
73 | init_fps (int number_of_files, char **av); | - | ||||||||||||||||||||||||
74 | static void init_funcs (void); | - | ||||||||||||||||||||||||
75 | static void init_store_cols (void); | - | ||||||||||||||||||||||||
76 | static void store_columns (void); | - | ||||||||||||||||||||||||
77 | static void balance (int total_stored); | - | ||||||||||||||||||||||||
78 | static void store_char (char c); | - | ||||||||||||||||||||||||
79 | static void pad_down (unsigned int lines); | - | ||||||||||||||||||||||||
80 | static void read_rest_of_line (COLUMN *p); | - | ||||||||||||||||||||||||
81 | static void skip_read (COLUMN *p, int column_number); | - | ||||||||||||||||||||||||
82 | static void print_char (char c); | - | ||||||||||||||||||||||||
83 | static void cleanup (void); | - | ||||||||||||||||||||||||
84 | static void print_sep_string (void); | - | ||||||||||||||||||||||||
85 | static void separator_string (const char *optarg_S); | - | ||||||||||||||||||||||||
86 | - | |||||||||||||||||||||||||
87 | - | |||||||||||||||||||||||||
88 | static COLUMN *column_vector; | - | ||||||||||||||||||||||||
89 | - | |||||||||||||||||||||||||
90 | - | |||||||||||||||||||||||||
91 | - | |||||||||||||||||||||||||
92 | - | |||||||||||||||||||||||||
93 | - | |||||||||||||||||||||||||
94 | static char *buff; | - | ||||||||||||||||||||||||
95 | - | |||||||||||||||||||||||||
96 | - | |||||||||||||||||||||||||
97 | - | |||||||||||||||||||||||||
98 | static unsigned int buff_current; | - | ||||||||||||||||||||||||
99 | - | |||||||||||||||||||||||||
100 | - | |||||||||||||||||||||||||
101 | - | |||||||||||||||||||||||||
102 | static size_t buff_allocated; | - | ||||||||||||||||||||||||
103 | - | |||||||||||||||||||||||||
104 | - | |||||||||||||||||||||||||
105 | - | |||||||||||||||||||||||||
106 | - | |||||||||||||||||||||||||
107 | - | |||||||||||||||||||||||||
108 | static int *line_vector; | - | ||||||||||||||||||||||||
109 | - | |||||||||||||||||||||||||
110 | - | |||||||||||||||||||||||||
111 | - | |||||||||||||||||||||||||
112 | - | |||||||||||||||||||||||||
113 | - | |||||||||||||||||||||||||
114 | - | |||||||||||||||||||||||||
115 | static int *end_vector; | - | ||||||||||||||||||||||||
116 | - | |||||||||||||||||||||||||
117 | - | |||||||||||||||||||||||||
118 | static | - | ||||||||||||||||||||||||
119 | _Bool | - | ||||||||||||||||||||||||
120 | parallel_files = | - | ||||||||||||||||||||||||
121 | 0 | - | ||||||||||||||||||||||||
122 | ; | - | ||||||||||||||||||||||||
123 | - | |||||||||||||||||||||||||
124 | - | |||||||||||||||||||||||||
125 | - | |||||||||||||||||||||||||
126 | static | - | ||||||||||||||||||||||||
127 | _Bool | - | ||||||||||||||||||||||||
128 | align_empty_cols; | - | ||||||||||||||||||||||||
129 | - | |||||||||||||||||||||||||
130 | - | |||||||||||||||||||||||||
131 | - | |||||||||||||||||||||||||
132 | static | - | ||||||||||||||||||||||||
133 | _Bool | - | ||||||||||||||||||||||||
134 | empty_line; | - | ||||||||||||||||||||||||
135 | - | |||||||||||||||||||||||||
136 | - | |||||||||||||||||||||||||
137 | - | |||||||||||||||||||||||||
138 | - | |||||||||||||||||||||||||
139 | - | |||||||||||||||||||||||||
140 | - | |||||||||||||||||||||||||
141 | static | - | ||||||||||||||||||||||||
142 | _Bool | - | ||||||||||||||||||||||||
143 | FF_only; | - | ||||||||||||||||||||||||
144 | - | |||||||||||||||||||||||||
145 | - | |||||||||||||||||||||||||
146 | - | |||||||||||||||||||||||||
147 | - | |||||||||||||||||||||||||
148 | static | - | ||||||||||||||||||||||||
149 | _Bool | - | ||||||||||||||||||||||||
150 | explicit_columns = | - | ||||||||||||||||||||||||
151 | 0 | - | ||||||||||||||||||||||||
152 | ; | - | ||||||||||||||||||||||||
153 | - | |||||||||||||||||||||||||
154 | - | |||||||||||||||||||||||||
155 | static | - | ||||||||||||||||||||||||
156 | _Bool | - | ||||||||||||||||||||||||
157 | extremities = | - | ||||||||||||||||||||||||
158 | 1 | - | ||||||||||||||||||||||||
159 | ; | - | ||||||||||||||||||||||||
160 | - | |||||||||||||||||||||||||
161 | - | |||||||||||||||||||||||||
162 | - | |||||||||||||||||||||||||
163 | static | - | ||||||||||||||||||||||||
164 | _Bool | - | ||||||||||||||||||||||||
165 | keep_FF = | - | ||||||||||||||||||||||||
166 | 0 | - | ||||||||||||||||||||||||
167 | ; | - | ||||||||||||||||||||||||
168 | static | - | ||||||||||||||||||||||||
169 | _Bool | - | ||||||||||||||||||||||||
170 | print_a_FF = | - | ||||||||||||||||||||||||
171 | 0 | - | ||||||||||||||||||||||||
172 | ; | - | ||||||||||||||||||||||||
173 | - | |||||||||||||||||||||||||
174 | - | |||||||||||||||||||||||||
175 | - | |||||||||||||||||||||||||
176 | static | - | ||||||||||||||||||||||||
177 | _Bool | - | ||||||||||||||||||||||||
178 | print_a_header; | - | ||||||||||||||||||||||||
179 | - | |||||||||||||||||||||||||
180 | - | |||||||||||||||||||||||||
181 | static | - | ||||||||||||||||||||||||
182 | _Bool | - | ||||||||||||||||||||||||
183 | use_form_feed = | - | ||||||||||||||||||||||||
184 | 0 | - | ||||||||||||||||||||||||
185 | ; | - | ||||||||||||||||||||||||
186 | - | |||||||||||||||||||||||||
187 | - | |||||||||||||||||||||||||
188 | static | - | ||||||||||||||||||||||||
189 | _Bool | - | ||||||||||||||||||||||||
190 | have_read_stdin = | - | ||||||||||||||||||||||||
191 | 0 | - | ||||||||||||||||||||||||
192 | ; | - | ||||||||||||||||||||||||
193 | - | |||||||||||||||||||||||||
194 | - | |||||||||||||||||||||||||
195 | static | - | ||||||||||||||||||||||||
196 | _Bool | - | ||||||||||||||||||||||||
197 | print_across_flag = | - | ||||||||||||||||||||||||
198 | 0 | - | ||||||||||||||||||||||||
199 | ; | - | ||||||||||||||||||||||||
200 | - | |||||||||||||||||||||||||
201 | - | |||||||||||||||||||||||||
202 | static | - | ||||||||||||||||||||||||
203 | _Bool | - | ||||||||||||||||||||||||
204 | storing_columns = | - | ||||||||||||||||||||||||
205 | 1 | - | ||||||||||||||||||||||||
206 | ; | - | ||||||||||||||||||||||||
207 | - | |||||||||||||||||||||||||
208 | - | |||||||||||||||||||||||||
209 | - | |||||||||||||||||||||||||
210 | - | |||||||||||||||||||||||||
211 | - | |||||||||||||||||||||||||
212 | static | - | ||||||||||||||||||||||||
213 | _Bool | - | ||||||||||||||||||||||||
214 | balance_columns = | - | ||||||||||||||||||||||||
215 | 0 | - | ||||||||||||||||||||||||
216 | ; | - | ||||||||||||||||||||||||
217 | - | |||||||||||||||||||||||||
218 | - | |||||||||||||||||||||||||
219 | static int lines_per_page = 66; | - | ||||||||||||||||||||||||
220 | - | |||||||||||||||||||||||||
221 | - | |||||||||||||||||||||||||
222 | - | |||||||||||||||||||||||||
223 | enum { lines_per_header = 5 }; | - | ||||||||||||||||||||||||
224 | static int lines_per_body; | - | ||||||||||||||||||||||||
225 | enum { lines_per_footer = 5 }; | - | ||||||||||||||||||||||||
226 | - | |||||||||||||||||||||||||
227 | - | |||||||||||||||||||||||||
228 | - | |||||||||||||||||||||||||
229 | static int chars_per_line = 72; | - | ||||||||||||||||||||||||
230 | - | |||||||||||||||||||||||||
231 | - | |||||||||||||||||||||||||
232 | static | - | ||||||||||||||||||||||||
233 | _Bool | - | ||||||||||||||||||||||||
234 | truncate_lines = | - | ||||||||||||||||||||||||
235 | 0 | - | ||||||||||||||||||||||||
236 | ; | - | ||||||||||||||||||||||||
237 | - | |||||||||||||||||||||||||
238 | - | |||||||||||||||||||||||||
239 | - | |||||||||||||||||||||||||
240 | static | - | ||||||||||||||||||||||||
241 | _Bool | - | ||||||||||||||||||||||||
242 | join_lines = | - | ||||||||||||||||||||||||
243 | 0 | - | ||||||||||||||||||||||||
244 | ; | - | ||||||||||||||||||||||||
245 | - | |||||||||||||||||||||||||
246 | - | |||||||||||||||||||||||||
247 | - | |||||||||||||||||||||||||
248 | static int chars_per_column; | - | ||||||||||||||||||||||||
249 | - | |||||||||||||||||||||||||
250 | - | |||||||||||||||||||||||||
251 | static | - | ||||||||||||||||||||||||
252 | _Bool | - | ||||||||||||||||||||||||
253 | untabify_input = | - | ||||||||||||||||||||||||
254 | 0 | - | ||||||||||||||||||||||||
255 | ; | - | ||||||||||||||||||||||||
256 | - | |||||||||||||||||||||||||
257 | - | |||||||||||||||||||||||||
258 | static char input_tab_char = '\t'; | - | ||||||||||||||||||||||||
259 | - | |||||||||||||||||||||||||
260 | - | |||||||||||||||||||||||||
261 | - | |||||||||||||||||||||||||
262 | static int chars_per_input_tab = 8; | - | ||||||||||||||||||||||||
263 | - | |||||||||||||||||||||||||
264 | - | |||||||||||||||||||||||||
265 | static | - | ||||||||||||||||||||||||
266 | _Bool | - | ||||||||||||||||||||||||
267 | tabify_output = | - | ||||||||||||||||||||||||
268 | 0 | - | ||||||||||||||||||||||||
269 | ; | - | ||||||||||||||||||||||||
270 | - | |||||||||||||||||||||||||
271 | - | |||||||||||||||||||||||||
272 | static char output_tab_char = '\t'; | - | ||||||||||||||||||||||||
273 | - | |||||||||||||||||||||||||
274 | - | |||||||||||||||||||||||||
275 | static int chars_per_output_tab = 8; | - | ||||||||||||||||||||||||
276 | - | |||||||||||||||||||||||||
277 | - | |||||||||||||||||||||||||
278 | - | |||||||||||||||||||||||||
279 | - | |||||||||||||||||||||||||
280 | static int spaces_not_printed; | - | ||||||||||||||||||||||||
281 | - | |||||||||||||||||||||||||
282 | - | |||||||||||||||||||||||||
283 | static int chars_per_margin = 0; | - | ||||||||||||||||||||||||
284 | - | |||||||||||||||||||||||||
285 | - | |||||||||||||||||||||||||
286 | - | |||||||||||||||||||||||||
287 | - | |||||||||||||||||||||||||
288 | - | |||||||||||||||||||||||||
289 | static int output_position; | - | ||||||||||||||||||||||||
290 | - | |||||||||||||||||||||||||
291 | - | |||||||||||||||||||||||||
292 | - | |||||||||||||||||||||||||
293 | - | |||||||||||||||||||||||||
294 | - | |||||||||||||||||||||||||
295 | static int input_position; | - | ||||||||||||||||||||||||
296 | - | |||||||||||||||||||||||||
297 | - | |||||||||||||||||||||||||
298 | - | |||||||||||||||||||||||||
299 | static | - | ||||||||||||||||||||||||
300 | _Bool | - | ||||||||||||||||||||||||
301 | failed_opens = | - | ||||||||||||||||||||||||
302 | 0 | - | ||||||||||||||||||||||||
303 | ; | - | ||||||||||||||||||||||||
304 | static int columns = 1; | - | ||||||||||||||||||||||||
305 | - | |||||||||||||||||||||||||
306 | - | |||||||||||||||||||||||||
307 | - | |||||||||||||||||||||||||
308 | static uintmax_t first_page_number = 0; | - | ||||||||||||||||||||||||
309 | static uintmax_t last_page_number = | - | ||||||||||||||||||||||||
310 | (18446744073709551615UL) | - | ||||||||||||||||||||||||
311 | ; | - | ||||||||||||||||||||||||
312 | - | |||||||||||||||||||||||||
313 | - | |||||||||||||||||||||||||
314 | static int files_ready_to_read = 0; | - | ||||||||||||||||||||||||
315 | - | |||||||||||||||||||||||||
316 | - | |||||||||||||||||||||||||
317 | static uintmax_t page_number; | - | ||||||||||||||||||||||||
318 | static int line_number; | - | ||||||||||||||||||||||||
319 | - | |||||||||||||||||||||||||
320 | - | |||||||||||||||||||||||||
321 | static | - | ||||||||||||||||||||||||
322 | _Bool | - | ||||||||||||||||||||||||
323 | numbered_lines = | - | ||||||||||||||||||||||||
324 | 0 | - | ||||||||||||||||||||||||
325 | ; | - | ||||||||||||||||||||||||
326 | - | |||||||||||||||||||||||||
327 | - | |||||||||||||||||||||||||
328 | static char number_separator = '\t'; | - | ||||||||||||||||||||||||
329 | - | |||||||||||||||||||||||||
330 | - | |||||||||||||||||||||||||
331 | - | |||||||||||||||||||||||||
332 | static int line_count = 1; | - | ||||||||||||||||||||||||
333 | - | |||||||||||||||||||||||||
334 | - | |||||||||||||||||||||||||
335 | - | |||||||||||||||||||||||||
336 | - | |||||||||||||||||||||||||
337 | static | - | ||||||||||||||||||||||||
338 | _Bool | - | ||||||||||||||||||||||||
339 | skip_count = | - | ||||||||||||||||||||||||
340 | 1 | - | ||||||||||||||||||||||||
341 | ; | - | ||||||||||||||||||||||||
342 | - | |||||||||||||||||||||||||
343 | - | |||||||||||||||||||||||||
344 | - | |||||||||||||||||||||||||
345 | static int start_line_num = 1; | - | ||||||||||||||||||||||||
346 | - | |||||||||||||||||||||||||
347 | - | |||||||||||||||||||||||||
348 | static int chars_per_number = 5; | - | ||||||||||||||||||||||||
349 | - | |||||||||||||||||||||||||
350 | - | |||||||||||||||||||||||||
351 | - | |||||||||||||||||||||||||
352 | - | |||||||||||||||||||||||||
353 | static int number_width; | - | ||||||||||||||||||||||||
354 | - | |||||||||||||||||||||||||
355 | - | |||||||||||||||||||||||||
356 | static char *number_buff; | - | ||||||||||||||||||||||||
357 | - | |||||||||||||||||||||||||
358 | - | |||||||||||||||||||||||||
359 | - | |||||||||||||||||||||||||
360 | static | - | ||||||||||||||||||||||||
361 | _Bool | - | ||||||||||||||||||||||||
362 | use_esc_sequence = | - | ||||||||||||||||||||||||
363 | 0 | - | ||||||||||||||||||||||||
364 | ; | - | ||||||||||||||||||||||||
365 | - | |||||||||||||||||||||||||
366 | - | |||||||||||||||||||||||||
367 | - | |||||||||||||||||||||||||
368 | static | - | ||||||||||||||||||||||||
369 | _Bool | - | ||||||||||||||||||||||||
370 | use_cntrl_prefix = | - | ||||||||||||||||||||||||
371 | 0 | - | ||||||||||||||||||||||||
372 | ; | - | ||||||||||||||||||||||||
373 | - | |||||||||||||||||||||||||
374 | - | |||||||||||||||||||||||||
375 | static | - | ||||||||||||||||||||||||
376 | _Bool | - | ||||||||||||||||||||||||
377 | double_space = | - | ||||||||||||||||||||||||
378 | 0 | - | ||||||||||||||||||||||||
379 | ; | - | ||||||||||||||||||||||||
380 | - | |||||||||||||||||||||||||
381 | - | |||||||||||||||||||||||||
382 | - | |||||||||||||||||||||||||
383 | static int total_files = 0; | - | ||||||||||||||||||||||||
384 | - | |||||||||||||||||||||||||
385 | - | |||||||||||||||||||||||||
386 | static | - | ||||||||||||||||||||||||
387 | _Bool | - | ||||||||||||||||||||||||
388 | ignore_failed_opens = | - | ||||||||||||||||||||||||
389 | 0 | - | ||||||||||||||||||||||||
390 | ; | - | ||||||||||||||||||||||||
391 | - | |||||||||||||||||||||||||
392 | - | |||||||||||||||||||||||||
393 | - | |||||||||||||||||||||||||
394 | static | - | ||||||||||||||||||||||||
395 | _Bool | - | ||||||||||||||||||||||||
396 | use_col_separator = | - | ||||||||||||||||||||||||
397 | 0 | - | ||||||||||||||||||||||||
398 | ; | - | ||||||||||||||||||||||||
399 | - | |||||||||||||||||||||||||
400 | - | |||||||||||||||||||||||||
401 | - | |||||||||||||||||||||||||
402 | - | |||||||||||||||||||||||||
403 | static char const *col_sep_string = ""; | - | ||||||||||||||||||||||||
404 | static int col_sep_length = 0; | - | ||||||||||||||||||||||||
405 | static char *column_separator = (char *) " "; | - | ||||||||||||||||||||||||
406 | static char *line_separator = (char *) "\t"; | - | ||||||||||||||||||||||||
407 | - | |||||||||||||||||||||||||
408 | - | |||||||||||||||||||||||||
409 | - | |||||||||||||||||||||||||
410 | static int separators_not_printed; | - | ||||||||||||||||||||||||
411 | - | |||||||||||||||||||||||||
412 | - | |||||||||||||||||||||||||
413 | - | |||||||||||||||||||||||||
414 | static int padding_not_printed; | - | ||||||||||||||||||||||||
415 | - | |||||||||||||||||||||||||
416 | - | |||||||||||||||||||||||||
417 | - | |||||||||||||||||||||||||
418 | static | - | ||||||||||||||||||||||||
419 | _Bool | - | ||||||||||||||||||||||||
420 | pad_vertically; | - | ||||||||||||||||||||||||
421 | - | |||||||||||||||||||||||||
422 | - | |||||||||||||||||||||||||
423 | static char *custom_header; | - | ||||||||||||||||||||||||
424 | - | |||||||||||||||||||||||||
425 | - | |||||||||||||||||||||||||
426 | static char const *date_format; | - | ||||||||||||||||||||||||
427 | - | |||||||||||||||||||||||||
428 | - | |||||||||||||||||||||||||
429 | static timezone_t localtz; | - | ||||||||||||||||||||||||
430 | - | |||||||||||||||||||||||||
431 | - | |||||||||||||||||||||||||
432 | static char *date_text; | - | ||||||||||||||||||||||||
433 | static char const *file_text; | - | ||||||||||||||||||||||||
434 | - | |||||||||||||||||||||||||
435 | - | |||||||||||||||||||||||||
436 | static int header_width_available; | - | ||||||||||||||||||||||||
437 | - | |||||||||||||||||||||||||
438 | static char *clump_buff; | - | ||||||||||||||||||||||||
439 | - | |||||||||||||||||||||||||
440 | - | |||||||||||||||||||||||||
441 | - | |||||||||||||||||||||||||
442 | - | |||||||||||||||||||||||||
443 | - | |||||||||||||||||||||||||
444 | static | - | ||||||||||||||||||||||||
445 | _Bool | - | ||||||||||||||||||||||||
446 | last_line = | - | ||||||||||||||||||||||||
447 | 0 | - | ||||||||||||||||||||||||
448 | ; | - | ||||||||||||||||||||||||
449 | - | |||||||||||||||||||||||||
450 | - | |||||||||||||||||||||||||
451 | - | |||||||||||||||||||||||||
452 | enum | - | ||||||||||||||||||||||||
453 | { | - | ||||||||||||||||||||||||
454 | COLUMNS_OPTION = 0x7f + 1, | - | ||||||||||||||||||||||||
455 | PAGES_OPTION | - | ||||||||||||||||||||||||
456 | }; | - | ||||||||||||||||||||||||
457 | - | |||||||||||||||||||||||||
458 | static char const short_options[] = | - | ||||||||||||||||||||||||
459 | "-0123456789D:FJN:S::TW:abcde::fh:i::l:mn::o:rs::tvw:"; | - | ||||||||||||||||||||||||
460 | - | |||||||||||||||||||||||||
461 | static struct option const long_options[] = | - | ||||||||||||||||||||||||
462 | { | - | ||||||||||||||||||||||||
463 | {"pages", | - | ||||||||||||||||||||||||
464 | 1 | - | ||||||||||||||||||||||||
465 | , | - | ||||||||||||||||||||||||
466 | ((void *)0) | - | ||||||||||||||||||||||||
467 | , PAGES_OPTION}, | - | ||||||||||||||||||||||||
468 | {"columns", | - | ||||||||||||||||||||||||
469 | 1 | - | ||||||||||||||||||||||||
470 | , | - | ||||||||||||||||||||||||
471 | ((void *)0) | - | ||||||||||||||||||||||||
472 | , COLUMNS_OPTION}, | - | ||||||||||||||||||||||||
473 | {"across", | - | ||||||||||||||||||||||||
474 | 0 | - | ||||||||||||||||||||||||
475 | , | - | ||||||||||||||||||||||||
476 | ((void *)0) | - | ||||||||||||||||||||||||
477 | , 'a'}, | - | ||||||||||||||||||||||||
478 | {"show-control-chars", | - | ||||||||||||||||||||||||
479 | 0 | - | ||||||||||||||||||||||||
480 | , | - | ||||||||||||||||||||||||
481 | ((void *)0) | - | ||||||||||||||||||||||||
482 | , 'c'}, | - | ||||||||||||||||||||||||
483 | {"double-space", | - | ||||||||||||||||||||||||
484 | 0 | - | ||||||||||||||||||||||||
485 | , | - | ||||||||||||||||||||||||
486 | ((void *)0) | - | ||||||||||||||||||||||||
487 | , 'd'}, | - | ||||||||||||||||||||||||
488 | {"date-format", | - | ||||||||||||||||||||||||
489 | 1 | - | ||||||||||||||||||||||||
490 | , | - | ||||||||||||||||||||||||
491 | ((void *)0) | - | ||||||||||||||||||||||||
492 | , 'D'}, | - | ||||||||||||||||||||||||
493 | {"expand-tabs", | - | ||||||||||||||||||||||||
494 | 2 | - | ||||||||||||||||||||||||
495 | , | - | ||||||||||||||||||||||||
496 | ((void *)0) | - | ||||||||||||||||||||||||
497 | , 'e'}, | - | ||||||||||||||||||||||||
498 | {"form-feed", | - | ||||||||||||||||||||||||
499 | 0 | - | ||||||||||||||||||||||||
500 | , | - | ||||||||||||||||||||||||
501 | ((void *)0) | - | ||||||||||||||||||||||||
502 | , 'f'}, | - | ||||||||||||||||||||||||
503 | {"header", | - | ||||||||||||||||||||||||
504 | 1 | - | ||||||||||||||||||||||||
505 | , | - | ||||||||||||||||||||||||
506 | ((void *)0) | - | ||||||||||||||||||||||||
507 | , 'h'}, | - | ||||||||||||||||||||||||
508 | {"output-tabs", | - | ||||||||||||||||||||||||
509 | 2 | - | ||||||||||||||||||||||||
510 | , | - | ||||||||||||||||||||||||
511 | ((void *)0) | - | ||||||||||||||||||||||||
512 | , 'i'}, | - | ||||||||||||||||||||||||
513 | {"join-lines", | - | ||||||||||||||||||||||||
514 | 0 | - | ||||||||||||||||||||||||
515 | , | - | ||||||||||||||||||||||||
516 | ((void *)0) | - | ||||||||||||||||||||||||
517 | , 'J'}, | - | ||||||||||||||||||||||||
518 | {"length", | - | ||||||||||||||||||||||||
519 | 1 | - | ||||||||||||||||||||||||
520 | , | - | ||||||||||||||||||||||||
521 | ((void *)0) | - | ||||||||||||||||||||||||
522 | , 'l'}, | - | ||||||||||||||||||||||||
523 | {"merge", | - | ||||||||||||||||||||||||
524 | 0 | - | ||||||||||||||||||||||||
525 | , | - | ||||||||||||||||||||||||
526 | ((void *)0) | - | ||||||||||||||||||||||||
527 | , 'm'}, | - | ||||||||||||||||||||||||
528 | {"number-lines", | - | ||||||||||||||||||||||||
529 | 2 | - | ||||||||||||||||||||||||
530 | , | - | ||||||||||||||||||||||||
531 | ((void *)0) | - | ||||||||||||||||||||||||
532 | , 'n'}, | - | ||||||||||||||||||||||||
533 | {"first-line-number", | - | ||||||||||||||||||||||||
534 | 1 | - | ||||||||||||||||||||||||
535 | , | - | ||||||||||||||||||||||||
536 | ((void *)0) | - | ||||||||||||||||||||||||
537 | , 'N'}, | - | ||||||||||||||||||||||||
538 | {"indent", | - | ||||||||||||||||||||||||
539 | 1 | - | ||||||||||||||||||||||||
540 | , | - | ||||||||||||||||||||||||
541 | ((void *)0) | - | ||||||||||||||||||||||||
542 | , 'o'}, | - | ||||||||||||||||||||||||
543 | {"no-file-warnings", | - | ||||||||||||||||||||||||
544 | 0 | - | ||||||||||||||||||||||||
545 | , | - | ||||||||||||||||||||||||
546 | ((void *)0) | - | ||||||||||||||||||||||||
547 | , 'r'}, | - | ||||||||||||||||||||||||
548 | {"separator", | - | ||||||||||||||||||||||||
549 | 2 | - | ||||||||||||||||||||||||
550 | , | - | ||||||||||||||||||||||||
551 | ((void *)0) | - | ||||||||||||||||||||||||
552 | , 's'}, | - | ||||||||||||||||||||||||
553 | {"sep-string", | - | ||||||||||||||||||||||||
554 | 2 | - | ||||||||||||||||||||||||
555 | , | - | ||||||||||||||||||||||||
556 | ((void *)0) | - | ||||||||||||||||||||||||
557 | , 'S'}, | - | ||||||||||||||||||||||||
558 | {"omit-header", | - | ||||||||||||||||||||||||
559 | 0 | - | ||||||||||||||||||||||||
560 | , | - | ||||||||||||||||||||||||
561 | ((void *)0) | - | ||||||||||||||||||||||||
562 | , 't'}, | - | ||||||||||||||||||||||||
563 | {"omit-pagination", | - | ||||||||||||||||||||||||
564 | 0 | - | ||||||||||||||||||||||||
565 | , | - | ||||||||||||||||||||||||
566 | ((void *)0) | - | ||||||||||||||||||||||||
567 | , 'T'}, | - | ||||||||||||||||||||||||
568 | {"show-nonprinting", | - | ||||||||||||||||||||||||
569 | 0 | - | ||||||||||||||||||||||||
570 | , | - | ||||||||||||||||||||||||
571 | ((void *)0) | - | ||||||||||||||||||||||||
572 | , 'v'}, | - | ||||||||||||||||||||||||
573 | {"width", | - | ||||||||||||||||||||||||
574 | 1 | - | ||||||||||||||||||||||||
575 | , | - | ||||||||||||||||||||||||
576 | ((void *)0) | - | ||||||||||||||||||||||||
577 | , 'w'}, | - | ||||||||||||||||||||||||
578 | {"page-width", | - | ||||||||||||||||||||||||
579 | 1 | - | ||||||||||||||||||||||||
580 | , | - | ||||||||||||||||||||||||
581 | ((void *)0) | - | ||||||||||||||||||||||||
582 | , 'W'}, | - | ||||||||||||||||||||||||
583 | {"help", | - | ||||||||||||||||||||||||
584 | 0 | - | ||||||||||||||||||||||||
585 | , | - | ||||||||||||||||||||||||
586 | ((void *)0) | - | ||||||||||||||||||||||||
587 | , GETOPT_HELP_CHAR}, | - | ||||||||||||||||||||||||
588 | {"version", | - | ||||||||||||||||||||||||
589 | 0 | - | ||||||||||||||||||||||||
590 | , | - | ||||||||||||||||||||||||
591 | ((void *)0) | - | ||||||||||||||||||||||||
592 | , GETOPT_VERSION_CHAR}, | - | ||||||||||||||||||||||||
593 | { | - | ||||||||||||||||||||||||
594 | ((void *)0) | - | ||||||||||||||||||||||||
595 | , 0, | - | ||||||||||||||||||||||||
596 | ((void *)0) | - | ||||||||||||||||||||||||
597 | , 0} | - | ||||||||||||||||||||||||
598 | }; | - | ||||||||||||||||||||||||
599 | - | |||||||||||||||||||||||||
600 | static void | - | ||||||||||||||||||||||||
601 | integer_overflow (void) | - | ||||||||||||||||||||||||
602 | { | - | ||||||||||||||||||||||||
603 | ((!!sizeof (struct { _Static_assert ( | - | ||||||||||||||||||||||||
604 | 1 | - | ||||||||||||||||||||||||
605 | , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"integer overflow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( | - | ||||||||||||||||||||||||
606 | 1 | - | ||||||||||||||||||||||||
607 | , 0, | - | ||||||||||||||||||||||||
608 | dcgettext (((void *)0), | - | ||||||||||||||||||||||||
609 | "integer overflow" | - | ||||||||||||||||||||||||
610 | , 5) | - | ||||||||||||||||||||||||
611 | ), (( | - | ||||||||||||||||||||||||
612 | 0 | - | ||||||||||||||||||||||||
613 | ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( | - | ||||||||||||||||||||||||
614 | 1 | - | ||||||||||||||||||||||||
615 | , 0, | - | ||||||||||||||||||||||||
616 | dcgettext (((void *)0), | - | ||||||||||||||||||||||||
617 | "integer overflow" | - | ||||||||||||||||||||||||
618 | , 5) | - | ||||||||||||||||||||||||
619 | ), (( | - | ||||||||||||||||||||||||
620 | 0 | - | ||||||||||||||||||||||||
621 | ) ? (void) 0 : __builtin_unreachable ())))); | - | ||||||||||||||||||||||||
622 | } never executed: end of block | 0 | ||||||||||||||||||||||||
623 | - | |||||||||||||||||||||||||
624 | - | |||||||||||||||||||||||||
625 | - | |||||||||||||||||||||||||
626 | - | |||||||||||||||||||||||||
627 | static unsigned int __attribute__ ((__pure__)) | - | ||||||||||||||||||||||||
628 | cols_ready_to_print (void) | - | ||||||||||||||||||||||||
629 | { | - | ||||||||||||||||||||||||
630 | COLUMN *q; | - | ||||||||||||||||||||||||
631 | unsigned int i; | - | ||||||||||||||||||||||||
632 | unsigned int n; | - | ||||||||||||||||||||||||
633 | - | |||||||||||||||||||||||||
634 | n = 0; | - | ||||||||||||||||||||||||
635 | for (q = column_vector, i = 0; i < columns
| 56091-101299 | ||||||||||||||||||||||||
636 | if (q->status == OPEN
| 42339-58960 | ||||||||||||||||||||||||
637 | || q->status == FF_FOUND
| 4884-37455 | ||||||||||||||||||||||||
638 | || (storing_columns
| 4449-22986 | ||||||||||||||||||||||||
639 | ++ executed 75136 times by 1 test: n;++n; Executed by:
executed 75136 times by 1 test: ++n; Executed by:
| 75136 | ||||||||||||||||||||||||
640 | return executed 56091 times by 1 test: n;return n; Executed by:
executed 56091 times by 1 test: return n; Executed by:
| 56091 | ||||||||||||||||||||||||
641 | } | - | ||||||||||||||||||||||||
642 | - | |||||||||||||||||||||||||
643 | - | |||||||||||||||||||||||||
644 | - | |||||||||||||||||||||||||
645 | - | |||||||||||||||||||||||||
646 | static | - | ||||||||||||||||||||||||
647 | _Bool | - | ||||||||||||||||||||||||
648 | - | |||||||||||||||||||||||||
649 | first_last_page (int oi, char c, char const *pages) | - | ||||||||||||||||||||||||
650 | { | - | ||||||||||||||||||||||||
651 | char *p; | - | ||||||||||||||||||||||||
652 | uintmax_t first; | - | ||||||||||||||||||||||||
653 | uintmax_t last = | - | ||||||||||||||||||||||||
654 | (18446744073709551615UL) | - | ||||||||||||||||||||||||
655 | ; | - | ||||||||||||||||||||||||
656 | strtol_error err = xstrtoumax (pages, &p, 10, &first, ""); | - | ||||||||||||||||||||||||
657 | if (err != LONGINT_OK
| 3-221 | ||||||||||||||||||||||||
658 | xstrtol_fatal (err, oi, c, long_options, pages); executed 3 times by 1 test: xstrtol_fatal (err, oi, c, long_options, pages); Executed by:
| 3 | ||||||||||||||||||||||||
659 | - | |||||||||||||||||||||||||
660 | if (p == pages
| 0-246 | ||||||||||||||||||||||||
661 | return never executed: return 0 ; never executed: return 0 ; | 0 | ||||||||||||||||||||||||
662 | 0 never executed: return 0 ; | 0 | ||||||||||||||||||||||||
663 | ; never executed: return 0 ; | 0 | ||||||||||||||||||||||||
664 | - | |||||||||||||||||||||||||
665 | if (*
| 24-222 | ||||||||||||||||||||||||
666 | { | - | ||||||||||||||||||||||||
667 | char const *p1 = p + 1; | - | ||||||||||||||||||||||||
668 | err = xstrtoumax (p1, &p, 10, &last, ""); | - | ||||||||||||||||||||||||
669 | if (err != LONGINT_OK
| 3-21 | ||||||||||||||||||||||||
670 | xstrtol_fatal (err, oi, c, long_options, pages); executed 3 times by 1 test: xstrtol_fatal (err, oi, c, long_options, pages); Executed by:
| 3 | ||||||||||||||||||||||||
671 | if (p1 == p
| 0-21 | ||||||||||||||||||||||||
672 | return never executed: return 0 ; never executed: return 0 ; | 0 | ||||||||||||||||||||||||
673 | 0 never executed: return 0 ; | 0 | ||||||||||||||||||||||||
674 | ; never executed: return 0 ; | 0 | ||||||||||||||||||||||||
675 | } executed 21 times by 1 test: end of block Executed by:
| 21 | ||||||||||||||||||||||||
676 | - | |||||||||||||||||||||||||
677 | if (*
| 1-242 | ||||||||||||||||||||||||
678 | return executed 1 time by 1 test: return 0 ; Executed by:
executed 1 time by 1 test: return 0 ; Executed by:
| 1 | ||||||||||||||||||||||||
679 | 0 executed 1 time by 1 test: return 0 ; Executed by:
| 1 | ||||||||||||||||||||||||
680 | ; executed 1 time by 1 test: return 0 ; Executed by:
| 1 | ||||||||||||||||||||||||
681 | - | |||||||||||||||||||||||||
682 | first_page_number = first; | - | ||||||||||||||||||||||||
683 | last_page_number = last; | - | ||||||||||||||||||||||||
684 | return executed 242 times by 1 test: return 1 ; Executed by:
executed 242 times by 1 test: return 1 ; Executed by:
| 242 | ||||||||||||||||||||||||
685 | 1 executed 242 times by 1 test: return 1 ; Executed by:
| 242 | ||||||||||||||||||||||||
686 | ; executed 242 times by 1 test: return 1 ; Executed by:
| 242 | ||||||||||||||||||||||||
687 | } | - | ||||||||||||||||||||||||
688 | - | |||||||||||||||||||||||||
689 | - | |||||||||||||||||||||||||
690 | - | |||||||||||||||||||||||||
691 | - | |||||||||||||||||||||||||
692 | - | |||||||||||||||||||||||||
693 | static void | - | ||||||||||||||||||||||||
694 | parse_column_count (char const *s) | - | ||||||||||||||||||||||||
695 | { | - | ||||||||||||||||||||||||
696 | getoptnum (s, 1, &columns, | - | ||||||||||||||||||||||||
697 | dcgettext (((void *)0), | - | ||||||||||||||||||||||||
698 | "invalid number of columns" | - | ||||||||||||||||||||||||
699 | , 5) | - | ||||||||||||||||||||||||
700 | ); | - | ||||||||||||||||||||||||
701 | explicit_columns = | - | ||||||||||||||||||||||||
702 | 1 | - | ||||||||||||||||||||||||
703 | ; | - | ||||||||||||||||||||||||
704 | } executed 420 times by 1 test: end of block Executed by:
| 420 | ||||||||||||||||||||||||
705 | - | |||||||||||||||||||||||||
706 | - | |||||||||||||||||||||||||
707 | - | |||||||||||||||||||||||||
708 | static void | - | ||||||||||||||||||||||||
709 | separator_string (const char *optarg_S) | - | ||||||||||||||||||||||||
710 | { | - | ||||||||||||||||||||||||
711 | size_t len = strlen (optarg_S); | - | ||||||||||||||||||||||||
712 | if (0x7fffffff < len
| 0-45 | ||||||||||||||||||||||||
713 | integer_overflow (); never executed: integer_overflow (); | 0 | ||||||||||||||||||||||||
714 | col_sep_length = len; | - | ||||||||||||||||||||||||
715 | col_sep_string = optarg_S; | - | ||||||||||||||||||||||||
716 | } executed 45 times by 1 test: end of block Executed by:
| 45 | ||||||||||||||||||||||||
717 | - | |||||||||||||||||||||||||
718 | int | - | ||||||||||||||||||||||||
719 | main (int argc, char **argv) | - | ||||||||||||||||||||||||
720 | { | - | ||||||||||||||||||||||||
721 | unsigned int n_files; | - | ||||||||||||||||||||||||
722 | - | |||||||||||||||||||||||||
723 | _Bool | - | ||||||||||||||||||||||||
724 | old_options = | - | ||||||||||||||||||||||||
725 | 0 | - | ||||||||||||||||||||||||
726 | ; | - | ||||||||||||||||||||||||
727 | - | |||||||||||||||||||||||||
728 | _Bool | - | ||||||||||||||||||||||||
729 | old_w = | - | ||||||||||||||||||||||||
730 | 0 | - | ||||||||||||||||||||||||
731 | ; | - | ||||||||||||||||||||||||
732 | - | |||||||||||||||||||||||||
733 | _Bool | - | ||||||||||||||||||||||||
734 | old_s = | - | ||||||||||||||||||||||||
735 | 0 | - | ||||||||||||||||||||||||
736 | ; | - | ||||||||||||||||||||||||
737 | char **file_names; | - | ||||||||||||||||||||||||
738 | - | |||||||||||||||||||||||||
739 | - | |||||||||||||||||||||||||
740 | char *column_count_string = | - | ||||||||||||||||||||||||
741 | ((void *)0) | - | ||||||||||||||||||||||||
742 | ; | - | ||||||||||||||||||||||||
743 | size_t n_digits = 0; | - | ||||||||||||||||||||||||
744 | size_t n_alloc = 0; | - | ||||||||||||||||||||||||
745 | - | |||||||||||||||||||||||||
746 | ; | - | ||||||||||||||||||||||||
747 | set_program_name (argv[0]); | - | ||||||||||||||||||||||||
748 | setlocale ( | - | ||||||||||||||||||||||||
749 | 6 | - | ||||||||||||||||||||||||
750 | , ""); | - | ||||||||||||||||||||||||
751 | bindtextdomain ("coreutils", "/usr/local/share/locale"); | - | ||||||||||||||||||||||||
752 | textdomain ("coreutils"); | - | ||||||||||||||||||||||||
753 | - | |||||||||||||||||||||||||
754 | atexit (close_stdout); | - | ||||||||||||||||||||||||
755 | - | |||||||||||||||||||||||||
756 | n_files = 0; | - | ||||||||||||||||||||||||
757 | file_names = (argc > 1
| 2-790 | ||||||||||||||||||||||||
758 | ? xnmalloc (argc - 1, sizeof (char *)) | - | ||||||||||||||||||||||||
759 | : | - | ||||||||||||||||||||||||
760 | ((void *)0) | - | ||||||||||||||||||||||||
761 | ); | - | ||||||||||||||||||||||||
762 | - | |||||||||||||||||||||||||
763 | while ( | - | ||||||||||||||||||||||||
764 | 1 | - | ||||||||||||||||||||||||
765 | ) | - | ||||||||||||||||||||||||
766 | { | - | ||||||||||||||||||||||||
767 | int oi = -1; | - | ||||||||||||||||||||||||
768 | int c = getopt_long (argc, argv, short_options, long_options, &oi); | - | ||||||||||||||||||||||||
769 | if (c == -1
| 731-4637 | ||||||||||||||||||||||||
770 | break; executed 731 times by 1 test: break; Executed by:
| 731 | ||||||||||||||||||||||||
771 | - | |||||||||||||||||||||||||
772 | if (((
| 726-3911 | ||||||||||||||||||||||||
773 | { | - | ||||||||||||||||||||||||
774 | - | |||||||||||||||||||||||||
775 | if (n_digits + 1 >= n_alloc
| 300-426 | ||||||||||||||||||||||||
776 | column_count_string executed 426 times by 1 test: column_count_string = ((void) (!!sizeof (struct { _Static_assert (sizeof *(column_count_string) == 1, "verify_true (" "sizeof *(column_count_string) == 1" ")"); int _gl_dummy; })), x2realloc (column_count_string, &n_alloc)); Executed by:
| 426 | ||||||||||||||||||||||||
777 | = ((void) (!!sizeof (struct { _Static_assert (sizeof *(column_count_string) == 1, "verify_true (" "sizeof *(column_count_string) == 1" ")"); int _gl_dummy; })), x2realloc (column_count_string, &n_alloc)); executed 426 times by 1 test: column_count_string = ((void) (!!sizeof (struct { _Static_assert (sizeof *(column_count_string) == 1, "verify_true (" "sizeof *(column_count_string) == 1" ")"); int _gl_dummy; })), x2realloc (column_count_string, &n_alloc)); Executed by:
| 426 | ||||||||||||||||||||||||
778 | column_count_string[n_digits++] = c; | - | ||||||||||||||||||||||||
779 | column_count_string[n_digits] = '\0'; | - | ||||||||||||||||||||||||
780 | continue; executed 726 times by 1 test: continue; Executed by:
| 726 | ||||||||||||||||||||||||
781 | } | - | ||||||||||||||||||||||||
782 | - | |||||||||||||||||||||||||
783 | n_digits = 0; | - | ||||||||||||||||||||||||
784 | - | |||||||||||||||||||||||||
785 | switch (c) | - | ||||||||||||||||||||||||
786 | { | - | ||||||||||||||||||||||||
787 | case executed 561 times by 1 test: 1:case 1: Executed by:
executed 561 times by 1 test: case 1: Executed by:
| 561 | ||||||||||||||||||||||||
788 | - | |||||||||||||||||||||||||
789 | if (! (first_page_number == 0
| 94-467 | ||||||||||||||||||||||||
790 | && *
| 0-242 | ||||||||||||||||||||||||
791 | file_names[n_files++] = optarg; executed 319 times by 1 test: file_names[n_files++] = optarg; Executed by:
| 319 | ||||||||||||||||||||||||
792 | break; executed 561 times by 1 test: break; Executed by:
| 561 | ||||||||||||||||||||||||
793 | - | |||||||||||||||||||||||||
794 | case executed 7 times by 1 test: PAGES_OPTION:case PAGES_OPTION: Executed by:
executed 7 times by 1 test: case PAGES_OPTION: Executed by:
| 7 | ||||||||||||||||||||||||
795 | { | - | ||||||||||||||||||||||||
796 | if (! optarg
| 0-7 | ||||||||||||||||||||||||
797 | (( never executed: !!sizeof (struct { _Static_assert (((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
798 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
799 | , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
800 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
801 | , 0, never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
802 | dcgettext (((void *)0), never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
803 | "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
804 | , 5) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
805 | ), (( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
806 | 0 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
807 | ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
808 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
809 | , 0, never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
810 | dcgettext (((void *)0), never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
811 | "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
812 | , 5) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
813 | ), (( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
814 | 0 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
815 | ) ? (void) 0 : __builtin_unreachable ())))) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
816 | ; never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
817 | else if (! first_last_page (oi, 0, optarg)
| 0-1 | ||||||||||||||||||||||||
818 | (( executed 1 time by 1 test: !!sizeof (struct { _Static_assert (((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
819 | 1 executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
820 | , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
821 | 1 executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
822 | , 0, executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
823 | dcgettext (((void *)0), executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
824 | "invalid page range %s" executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
825 | , 5) executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
826 | , quote (optarg)), (( executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
827 | 0 executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
828 | ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
829 | 1 executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
830 | , 0, executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
831 | dcgettext (((void *)0), executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
832 | "invalid page range %s" executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
833 | , 5) executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
834 | , quote (optarg)), (( executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
835 | 0 executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
836 | ) ? (void) 0 : __builtin_unreachable ())))) executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
837 | ; executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; Executed by:
| 1 | ||||||||||||||||||||||||
838 | break; never executed: break; | 0 | ||||||||||||||||||||||||
839 | } | - | ||||||||||||||||||||||||
840 | - | |||||||||||||||||||||||||
841 | case executed 7 times by 1 test: COLUMNS_OPTION:case COLUMNS_OPTION: Executed by:
executed 7 times by 1 test: case COLUMNS_OPTION: Executed by:
| 7 | ||||||||||||||||||||||||
842 | { | - | ||||||||||||||||||||||||
843 | parse_column_count (optarg); | - | ||||||||||||||||||||||||
844 | - | |||||||||||||||||||||||||
845 | - | |||||||||||||||||||||||||
846 | - | |||||||||||||||||||||||||
847 | - | |||||||||||||||||||||||||
848 | free (column_count_string); | - | ||||||||||||||||||||||||
849 | column_count_string = | - | ||||||||||||||||||||||||
850 | ((void *)0) | - | ||||||||||||||||||||||||
851 | ; | - | ||||||||||||||||||||||||
852 | n_alloc = 0; | - | ||||||||||||||||||||||||
853 | break; executed 6 times by 1 test: break; Executed by:
| 6 | ||||||||||||||||||||||||
854 | } | - | ||||||||||||||||||||||||
855 | - | |||||||||||||||||||||||||
856 | case executed 161 times by 1 test: 'a':case 'a': Executed by:
executed 161 times by 1 test: case 'a': Executed by:
| 161 | ||||||||||||||||||||||||
857 | print_across_flag = | - | ||||||||||||||||||||||||
858 | 1 | - | ||||||||||||||||||||||||
859 | ; | - | ||||||||||||||||||||||||
860 | storing_columns = | - | ||||||||||||||||||||||||
861 | 0 | - | ||||||||||||||||||||||||
862 | ; | - | ||||||||||||||||||||||||
863 | break; executed 161 times by 1 test: break; Executed by:
| 161 | ||||||||||||||||||||||||
864 | case executed 186 times by 1 test: 'b':case 'b': Executed by:
executed 186 times by 1 test: case 'b': Executed by:
| 186 | ||||||||||||||||||||||||
865 | balance_columns = | - | ||||||||||||||||||||||||
866 | 1 | - | ||||||||||||||||||||||||
867 | ; | - | ||||||||||||||||||||||||
868 | break; executed 186 times by 1 test: break; Executed by:
| 186 | ||||||||||||||||||||||||
869 | case executed 2 times by 1 test: 'c':case 'c': Executed by:
executed 2 times by 1 test: case 'c': Executed by:
| 2 | ||||||||||||||||||||||||
870 | use_cntrl_prefix = | - | ||||||||||||||||||||||||
871 | 1 | - | ||||||||||||||||||||||||
872 | ; | - | ||||||||||||||||||||||||
873 | break; executed 2 times by 1 test: break; Executed by:
| 2 | ||||||||||||||||||||||||
874 | case executed 8 times by 1 test: 'd':case 'd': Executed by:
executed 8 times by 1 test: case 'd': Executed by:
| 8 | ||||||||||||||||||||||||
875 | double_space = | - | ||||||||||||||||||||||||
876 | 1 | - | ||||||||||||||||||||||||
877 | ; | - | ||||||||||||||||||||||||
878 | break; executed 8 times by 1 test: break; Executed by:
| 8 | ||||||||||||||||||||||||
879 | case executed 732 times by 1 test: 'D':case 'D': Executed by:
executed 732 times by 1 test: case 'D': Executed by:
| 732 | ||||||||||||||||||||||||
880 | date_format = optarg; | - | ||||||||||||||||||||||||
881 | break; executed 732 times by 1 test: break; Executed by:
| 732 | ||||||||||||||||||||||||
882 | case executed 37 times by 1 test: 'e':case 'e': Executed by:
executed 37 times by 1 test: case 'e': Executed by:
| 37 | ||||||||||||||||||||||||
883 | if (optarg
| 10-27 | ||||||||||||||||||||||||
884 | getoptarg (optarg, 'e', &input_tab_char, executed 27 times by 1 test: getoptarg (optarg, 'e', &input_tab_char, &chars_per_input_tab); Executed by:
| 27 | ||||||||||||||||||||||||
885 | &chars_per_input_tab); executed 27 times by 1 test: getoptarg (optarg, 'e', &input_tab_char, &chars_per_input_tab); Executed by:
| 27 | ||||||||||||||||||||||||
886 | - | |||||||||||||||||||||||||
887 | untabify_input = | - | ||||||||||||||||||||||||
888 | 1 | - | ||||||||||||||||||||||||
889 | ; | - | ||||||||||||||||||||||||
890 | break; executed 37 times by 1 test: break; Executed by:
| 37 | ||||||||||||||||||||||||
891 | case executed 334 times by 1 test: 'f':case 'f': Executed by:
executed 334 times by 1 test: case 'f': Executed by:
| 334 | ||||||||||||||||||||||||
892 | case executed 1 time by 1 test: 'F':case 'F': Executed by:
executed 1 time by 1 test: case 'F': Executed by:
| 1 | ||||||||||||||||||||||||
893 | use_form_feed = | - | ||||||||||||||||||||||||
894 | 1 | - | ||||||||||||||||||||||||
895 | ; | - | ||||||||||||||||||||||||
896 | break; executed 335 times by 1 test: break; Executed by:
| 335 | ||||||||||||||||||||||||
897 | case executed 733 times by 1 test: 'h':case 'h': Executed by:
executed 733 times by 1 test: case 'h': Executed by:
| 733 | ||||||||||||||||||||||||
898 | custom_header = optarg; | - | ||||||||||||||||||||||||
899 | break; executed 733 times by 1 test: break; Executed by:
| 733 | ||||||||||||||||||||||||
900 | case executed 7 times by 1 test: 'i':case 'i': Executed by:
executed 7 times by 1 test: case 'i': Executed by:
| 7 | ||||||||||||||||||||||||
901 | if (optarg
| 1-6 | ||||||||||||||||||||||||
902 | getoptarg (optarg, 'i', &output_tab_char, executed 6 times by 1 test: getoptarg (optarg, 'i', &output_tab_char, &chars_per_output_tab); Executed by:
| 6 | ||||||||||||||||||||||||
903 | &chars_per_output_tab); executed 6 times by 1 test: getoptarg (optarg, 'i', &output_tab_char, &chars_per_output_tab); Executed by:
| 6 | ||||||||||||||||||||||||
904 | - | |||||||||||||||||||||||||
905 | tabify_output = | - | ||||||||||||||||||||||||
906 | 1 | - | ||||||||||||||||||||||||
907 | ; | - | ||||||||||||||||||||||||
908 | break; executed 7 times by 1 test: break; Executed by:
| 7 | ||||||||||||||||||||||||
909 | case executed 32 times by 1 test: 'J':case 'J': Executed by:
executed 32 times by 1 test: case 'J': Executed by:
| 32 | ||||||||||||||||||||||||
910 | join_lines = | - | ||||||||||||||||||||||||
911 | 1 | - | ||||||||||||||||||||||||
912 | ; | - | ||||||||||||||||||||||||
913 | break; executed 32 times by 1 test: break; Executed by:
| 32 | ||||||||||||||||||||||||
914 | case executed 472 times by 1 test: 'l':case 'l': Executed by:
executed 472 times by 1 test: case 'l': Executed by:
| 472 | ||||||||||||||||||||||||
915 | getoptnum (optarg, 1, &lines_per_page, | - | ||||||||||||||||||||||||
916 | - | |||||||||||||||||||||||||
917 | dcgettext (((void *)0), | - | ||||||||||||||||||||||||
918 | "'-l PAGE_LENGTH' invalid number of lines" | - | ||||||||||||||||||||||||
919 | , 5) | - | ||||||||||||||||||||||||
920 | ); | - | ||||||||||||||||||||||||
921 | break; executed 470 times by 1 test: break; Executed by:
| 470 | ||||||||||||||||||||||||
922 | case executed 39 times by 1 test: 'm':case 'm': Executed by:
executed 39 times by 1 test: case 'm': Executed by:
| 39 | ||||||||||||||||||||||||
923 | parallel_files = | - | ||||||||||||||||||||||||
924 | 1 | - | ||||||||||||||||||||||||
925 | ; | - | ||||||||||||||||||||||||
926 | storing_columns = | - | ||||||||||||||||||||||||
927 | 0 | - | ||||||||||||||||||||||||
928 | ; | - | ||||||||||||||||||||||||
929 | break; executed 39 times by 1 test: break; Executed by:
| 39 | ||||||||||||||||||||||||
930 | case executed 193 times by 1 test: 'n':case 'n': Executed by:
executed 193 times by 1 test: case 'n': Executed by:
| 193 | ||||||||||||||||||||||||
931 | numbered_lines = | - | ||||||||||||||||||||||||
932 | 1 | - | ||||||||||||||||||||||||
933 | ; | - | ||||||||||||||||||||||||
934 | if (optarg
| 25-168 | ||||||||||||||||||||||||
935 | getoptarg (optarg, 'n', &number_separator, executed 168 times by 1 test: getoptarg (optarg, 'n', &number_separator, &chars_per_number); Executed by:
| 168 | ||||||||||||||||||||||||
936 | &chars_per_number); executed 168 times by 1 test: getoptarg (optarg, 'n', &number_separator, &chars_per_number); Executed by:
| 168 | ||||||||||||||||||||||||
937 | break; executed 193 times by 1 test: break; Executed by:
| 193 | ||||||||||||||||||||||||
938 | case executed 17 times by 1 test: 'N':case 'N': Executed by:
executed 17 times by 1 test: case 'N': Executed by:
| 17 | ||||||||||||||||||||||||
939 | skip_count = | - | ||||||||||||||||||||||||
940 | 0 | - | ||||||||||||||||||||||||
941 | ; | - | ||||||||||||||||||||||||
942 | getoptnum (optarg, | - | ||||||||||||||||||||||||
943 | (-0x7fffffff - 1) | - | ||||||||||||||||||||||||
944 | , &start_line_num, | - | ||||||||||||||||||||||||
945 | - | |||||||||||||||||||||||||
946 | dcgettext (((void *)0), | - | ||||||||||||||||||||||||
947 | "'-N NUMBER' invalid starting line number" | - | ||||||||||||||||||||||||
948 | , 5) | - | ||||||||||||||||||||||||
949 | ); | - | ||||||||||||||||||||||||
950 | break; executed 15 times by 1 test: break; Executed by:
| 15 | ||||||||||||||||||||||||
951 | case executed 39 times by 1 test: 'o':case 'o': Executed by:
executed 39 times by 1 test: case 'o': Executed by:
| 39 | ||||||||||||||||||||||||
952 | getoptnum (optarg, 0, &chars_per_margin, | - | ||||||||||||||||||||||||
953 | - | |||||||||||||||||||||||||
954 | dcgettext (((void *)0), | - | ||||||||||||||||||||||||
955 | "'-o MARGIN' invalid line offset" | - | ||||||||||||||||||||||||
956 | , 5) | - | ||||||||||||||||||||||||
957 | ); | - | ||||||||||||||||||||||||
958 | break; executed 37 times by 1 test: break; Executed by:
| 37 | ||||||||||||||||||||||||
959 | case executed 2 times by 1 test: 'r':case 'r': Executed by:
executed 2 times by 1 test: case 'r': Executed by:
| 2 | ||||||||||||||||||||||||
960 | ignore_failed_opens = | - | ||||||||||||||||||||||||
961 | 1 | - | ||||||||||||||||||||||||
962 | ; | - | ||||||||||||||||||||||||
963 | break; executed 2 times by 1 test: break; Executed by:
| 2 | ||||||||||||||||||||||||
964 | case executed 17 times by 1 test: 's':case 's': Executed by:
executed 17 times by 1 test: case 's': Executed by:
| 17 | ||||||||||||||||||||||||
965 | old_options = | - | ||||||||||||||||||||||||
966 | 1 | - | ||||||||||||||||||||||||
967 | ; | - | ||||||||||||||||||||||||
968 | old_s = | - | ||||||||||||||||||||||||
969 | 1 | - | ||||||||||||||||||||||||
970 | ; | - | ||||||||||||||||||||||||
971 | if (!use_col_separator
| 0-17 | ||||||||||||||||||||||||
972 | separator_string (optarg); executed 9 times by 1 test: separator_string (optarg); Executed by:
| 9 | ||||||||||||||||||||||||
973 | break; executed 17 times by 1 test: break; Executed by:
| 17 | ||||||||||||||||||||||||
974 | case executed 43 times by 1 test: 'S':case 'S': Executed by:
executed 43 times by 1 test: case 'S': Executed by:
| 43 | ||||||||||||||||||||||||
975 | old_s = | - | ||||||||||||||||||||||||
976 | 0 | - | ||||||||||||||||||||||||
977 | ; | - | ||||||||||||||||||||||||
978 | - | |||||||||||||||||||||||||
979 | col_sep_string = ""; | - | ||||||||||||||||||||||||
980 | col_sep_length = 0; | - | ||||||||||||||||||||||||
981 | use_col_separator = | - | ||||||||||||||||||||||||
982 | 1 | - | ||||||||||||||||||||||||
983 | ; | - | ||||||||||||||||||||||||
984 | if (optarg
| 7-36 | ||||||||||||||||||||||||
985 | separator_string (optarg); executed 36 times by 1 test: separator_string (optarg); Executed by:
| 36 | ||||||||||||||||||||||||
986 | break; executed 43 times by 1 test: break; Executed by:
| 43 | ||||||||||||||||||||||||
987 | case executed 118 times by 1 test: 't':case 't': Executed by:
executed 118 times by 1 test: case 't': Executed by:
| 118 | ||||||||||||||||||||||||
988 | extremities = | - | ||||||||||||||||||||||||
989 | 0 | - | ||||||||||||||||||||||||
990 | ; | - | ||||||||||||||||||||||||
991 | keep_FF = | - | ||||||||||||||||||||||||
992 | 1 | - | ||||||||||||||||||||||||
993 | ; | - | ||||||||||||||||||||||||
994 | break; executed 118 times by 1 test: break; Executed by:
| 118 | ||||||||||||||||||||||||
995 | case executed 41 times by 1 test: 'T':case 'T': Executed by:
executed 41 times by 1 test: case 'T': Executed by:
| 41 | ||||||||||||||||||||||||
996 | extremities = | - | ||||||||||||||||||||||||
997 | 0 | - | ||||||||||||||||||||||||
998 | ; | - | ||||||||||||||||||||||||
999 | keep_FF = | - | ||||||||||||||||||||||||
1000 | 0 | - | ||||||||||||||||||||||||
1001 | ; | - | ||||||||||||||||||||||||
1002 | break; executed 41 times by 1 test: break; Executed by:
| 41 | ||||||||||||||||||||||||
1003 | case executed 2 times by 1 test: 'v':case 'v': Executed by:
executed 2 times by 1 test: case 'v': Executed by:
| 2 | ||||||||||||||||||||||||
1004 | use_esc_sequence = | - | ||||||||||||||||||||||||
1005 | 1 | - | ||||||||||||||||||||||||
1006 | ; | - | ||||||||||||||||||||||||
1007 | break; executed 2 times by 1 test: break; Executed by:
| 2 | ||||||||||||||||||||||||
1008 | case executed 19 times by 1 test: 'w':case 'w': Executed by:
executed 19 times by 1 test: case 'w': Executed by:
| 19 | ||||||||||||||||||||||||
1009 | old_options = | - | ||||||||||||||||||||||||
1010 | 1 | - | ||||||||||||||||||||||||
1011 | ; | - | ||||||||||||||||||||||||
1012 | old_w = | - | ||||||||||||||||||||||||
1013 | 1 | - | ||||||||||||||||||||||||
1014 | ; | - | ||||||||||||||||||||||||
1015 | { | - | ||||||||||||||||||||||||
1016 | int tmp_cpl; | - | ||||||||||||||||||||||||
1017 | getoptnum (optarg, 1, &tmp_cpl, | - | ||||||||||||||||||||||||
1018 | - | |||||||||||||||||||||||||
1019 | dcgettext (((void *)0), | - | ||||||||||||||||||||||||
1020 | "'-w PAGE_WIDTH' invalid number of characters" | - | ||||||||||||||||||||||||
1021 | , 5) | - | ||||||||||||||||||||||||
1022 | ); | - | ||||||||||||||||||||||||
1023 | if (! truncate_lines
| 0-17 | ||||||||||||||||||||||||
1024 | chars_per_line = tmp_cpl; executed 17 times by 1 test: chars_per_line = tmp_cpl; Executed by:
| 17 | ||||||||||||||||||||||||
1025 | } | - | ||||||||||||||||||||||||
1026 | break; executed 17 times by 1 test: break; Executed by:
| 17 | ||||||||||||||||||||||||
1027 | case executed 58 times by 1 test: 'W':case 'W': Executed by:
executed 58 times by 1 test: case 'W': Executed by:
| 58 | ||||||||||||||||||||||||
1028 | old_w = | - | ||||||||||||||||||||||||
1029 | 0 | - | ||||||||||||||||||||||||
1030 | ; | - | ||||||||||||||||||||||||
1031 | truncate_lines = | - | ||||||||||||||||||||||||
1032 | 1 | - | ||||||||||||||||||||||||
1033 | ; | - | ||||||||||||||||||||||||
1034 | getoptnum (optarg, 1, &chars_per_line, | - | ||||||||||||||||||||||||
1035 | - | |||||||||||||||||||||||||
1036 | dcgettext (((void *)0), | - | ||||||||||||||||||||||||
1037 | "'-W PAGE_WIDTH' invalid number of characters" | - | ||||||||||||||||||||||||
1038 | , 5) | - | ||||||||||||||||||||||||
1039 | ); | - | ||||||||||||||||||||||||
1040 | break; executed 56 times by 1 test: break; Executed by:
| 56 | ||||||||||||||||||||||||
1041 | case executed 33 times by 1 test: GETOPT_HELP_CHAR:case GETOPT_HELP_CHAR: Executed by:
executed 33 times by 1 test: usage (case GETOPT_HELP_CHAR: Executed by:
| 33 | ||||||||||||||||||||||||
1042 | 0 | - | ||||||||||||||||||||||||
1043 | ); break; never executed: ;break; | 0 | ||||||||||||||||||||||||
1044 | case executed 6 times by 1 test: GETOPT_VERSION_CHAR:case GETOPT_VERSION_CHAR: Executed by:
executed 6 times by 1 test: version_etc (case GETOPT_VERSION_CHAR: Executed by:
| 6 | ||||||||||||||||||||||||
1045 | stdout | - | ||||||||||||||||||||||||
1046 | , "pr", "GNU coreutils", Version, ("Pete TerMaat"), ("Roland Huebner"), (char *) | - | ||||||||||||||||||||||||
1047 | ((void *)0) | - | ||||||||||||||||||||||||
1048 | ); exit ( executed 6 times by 1 test: exit ( 0 ); Executed by:
| 6 | ||||||||||||||||||||||||
1049 | 0 executed 6 times by 1 test: exit ( 0 ); Executed by:
| 6 | ||||||||||||||||||||||||
1050 | ); executed 6 times by 1 test: break;exit ( 0 ); Executed by:
never executed: ;break; | 0-6 | ||||||||||||||||||||||||
1051 | default executed 4 times by 1 test: :default: Executed by:
executed 4 times by 1 test: default: Executed by:
| 4 | ||||||||||||||||||||||||
1052 | usage ( | - | ||||||||||||||||||||||||
1053 | 1 | - | ||||||||||||||||||||||||
1054 | ); | - | ||||||||||||||||||||||||
1055 | break; never executed: break; | 0 | ||||||||||||||||||||||||
1056 | } | - | ||||||||||||||||||||||||
1057 | } | - | ||||||||||||||||||||||||
1058 | - | |||||||||||||||||||||||||
1059 | if (column_count_string
| 311-420 | ||||||||||||||||||||||||
1060 | { | - | ||||||||||||||||||||||||
1061 | parse_column_count (column_count_string); | - | ||||||||||||||||||||||||
1062 | free (column_count_string); | - | ||||||||||||||||||||||||
1063 | } executed 414 times by 1 test: end of block Executed by:
| 414 | ||||||||||||||||||||||||
1064 | - | |||||||||||||||||||||||||
1065 | if (! date_format
| 4-721 | ||||||||||||||||||||||||
1066 | date_format = (getenv ("POSIXLY_CORRECT")
executed 4 times by 1 test: date_format = (getenv ("POSIXLY_CORRECT") && !hard_locale ( 2 ) ? "%b %e %H:%M %Y" : "%Y-%m-%d %H:%M"); Executed by:
| 0-4 | ||||||||||||||||||||||||
1067 | 2
executed 4 times by 1 test: date_format = (getenv ("POSIXLY_CORRECT") && !hard_locale ( 2 ) ? "%b %e %H:%M %Y" : "%Y-%m-%d %H:%M"); Executed by:
| 0-4 | ||||||||||||||||||||||||
1068 | )
executed 4 times by 1 test: date_format = (getenv ("POSIXLY_CORRECT") && !hard_locale ( 2 ) ? "%b %e %H:%M %Y" : "%Y-%m-%d %H:%M"); Executed by:
| 0-4 | ||||||||||||||||||||||||
1069 | ? "%b %e %H:%M %Y" executed 4 times by 1 test: date_format = (getenv ("POSIXLY_CORRECT") && !hard_locale ( 2 ) ? "%b %e %H:%M %Y" : "%Y-%m-%d %H:%M"); Executed by:
| 4 | ||||||||||||||||||||||||
1070 | : "%Y-%m-%d %H:%M"); executed 4 times by 1 test: date_format = (getenv ("POSIXLY_CORRECT") && !hard_locale ( 2 ) ? "%b %e %H:%M %Y" : "%Y-%m-%d %H:%M"); Executed by:
| 4 | ||||||||||||||||||||||||
1071 | - | |||||||||||||||||||||||||
1072 | localtz = tzalloc (getenv ("TZ")); | - | ||||||||||||||||||||||||
1073 | - | |||||||||||||||||||||||||
1074 | - | |||||||||||||||||||||||||
1075 | if (first_page_number == 0
| 242-483 | ||||||||||||||||||||||||
1076 | first_page_number = 1; executed 483 times by 1 test: first_page_number = 1; Executed by:
| 483 | ||||||||||||||||||||||||
1077 | - | |||||||||||||||||||||||||
1078 | if (parallel_files
| 0-688 | ||||||||||||||||||||||||
1079 | (( never executed: !!sizeof (struct { _Static_assert (((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1080 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1081 | , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1082 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1083 | , 0, never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1084 | dcgettext (((void *)0), never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1085 | "cannot specify number of columns when printing in parallel" never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1086 | , 5) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1087 | ), (( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1088 | 0 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1089 | ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1090 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1091 | , 0, never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1092 | dcgettext (((void *)0), never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1093 | "cannot specify number of columns when printing in parallel" never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1094 | , 5) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1095 | ), (( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1096 | 0 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1097 | ) ? (void) 0 : __builtin_unreachable ())))) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1098 | ; never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1099 | - | |||||||||||||||||||||||||
1100 | if (parallel_files
| 0-688 | ||||||||||||||||||||||||
1101 | (( never executed: !!sizeof (struct { _Static_assert (((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1102 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1103 | , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1104 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1105 | , 0, never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1106 | dcgettext (((void *)0), never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1107 | "cannot specify both printing across and printing in parallel" never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1108 | , 5) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1109 | ), (( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1110 | 0 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1111 | ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1112 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1113 | , 0, never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1114 | dcgettext (((void *)0), never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1115 | "cannot specify both printing across and printing in parallel" never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1116 | , 5) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1117 | ), (( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1118 | 0 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1119 | ) ? (void) 0 : __builtin_unreachable ())))) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1120 | ; never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ; | 0 | ||||||||||||||||||||||||
1121 | - | |||||||||||||||||||||||||
1122 | - | |||||||||||||||||||||||||
1123 | - | |||||||||||||||||||||||||
1124 | - | |||||||||||||||||||||||||
1125 | - | |||||||||||||||||||||||||
1126 | if (old_options
| 27-698 | ||||||||||||||||||||||||
1127 | { | - | ||||||||||||||||||||||||
1128 | if (old_w
| 10-17 | ||||||||||||||||||||||||
1129 | { | - | ||||||||||||||||||||||||
1130 | if (parallel_files
| 2-15 | ||||||||||||||||||||||||
1131 | { | - | ||||||||||||||||||||||||
1132 | - | |||||||||||||||||||||||||
1133 | truncate_lines = | - | ||||||||||||||||||||||||
1134 | 1 | - | ||||||||||||||||||||||||
1135 | ; | - | ||||||||||||||||||||||||
1136 | if (old_s
| 5-6 | ||||||||||||||||||||||||
1137 | - | |||||||||||||||||||||||||
1138 | - | |||||||||||||||||||||||||
1139 | use_col_separator = executed 6 times by 1 test: use_col_separator = 1 ; Executed by:
| 6 | ||||||||||||||||||||||||
1140 | 1 executed 6 times by 1 test: use_col_separator = 1 ; Executed by:
| 6 | ||||||||||||||||||||||||
1141 | ; executed 6 times by 1 test: use_col_separator = 1 ; Executed by:
| 6 | ||||||||||||||||||||||||
1142 | } executed 11 times by 1 test: end of block Executed by:
| 11 | ||||||||||||||||||||||||
1143 | else | - | ||||||||||||||||||||||||
1144 | - | |||||||||||||||||||||||||
1145 | - | |||||||||||||||||||||||||
1146 | join_lines = executed 6 times by 1 test: join_lines = 1 ; Executed by:
| 6 | ||||||||||||||||||||||||
1147 | 1 executed 6 times by 1 test: join_lines = 1 ; Executed by:
| 6 | ||||||||||||||||||||||||
1148 | ; executed 6 times by 1 test: join_lines = 1 ; Executed by:
| 6 | ||||||||||||||||||||||||
1149 | } | - | ||||||||||||||||||||||||
1150 | else if (!use_col_separator
| 0-10 | ||||||||||||||||||||||||
1151 | { | - | ||||||||||||||||||||||||
1152 | - | |||||||||||||||||||||||||
1153 | if (old_s
| 0-10 | ||||||||||||||||||||||||
1154 | { | - | ||||||||||||||||||||||||
1155 | if (!truncate_lines
| 0-10 | ||||||||||||||||||||||||
1156 | { | - | ||||||||||||||||||||||||
1157 | - | |||||||||||||||||||||||||
1158 | - | |||||||||||||||||||||||||
1159 | join_lines = | - | ||||||||||||||||||||||||
1160 | 1 | - | ||||||||||||||||||||||||
1161 | ; | - | ||||||||||||||||||||||||
1162 | if (col_sep_length > 0
| 4-6 | ||||||||||||||||||||||||
1163 | - | |||||||||||||||||||||||||
1164 | use_col_separator = executed 6 times by 1 test: use_col_separator = 1 ; Executed by:
| 6 | ||||||||||||||||||||||||
1165 | 1 executed 6 times by 1 test: use_col_separator = 1 ; Executed by:
| 6 | ||||||||||||||||||||||||
1166 | ; executed 6 times by 1 test: use_col_separator = 1 ; Executed by:
| 6 | ||||||||||||||||||||||||
1167 | } executed 10 times by 1 test: end of block Executed by:
| 10 | ||||||||||||||||||||||||
1168 | else | - | ||||||||||||||||||||||||
1169 | - | |||||||||||||||||||||||||
1170 | - | |||||||||||||||||||||||||
1171 | - | |||||||||||||||||||||||||
1172 | use_col_separator = never executed: use_col_separator = 1 ; | 0 | ||||||||||||||||||||||||
1173 | 1 never executed: use_col_separator = 1 ; | 0 | ||||||||||||||||||||||||
1174 | ; never executed: use_col_separator = 1 ; | 0 | ||||||||||||||||||||||||
1175 | } | - | ||||||||||||||||||||||||
1176 | } executed 10 times by 1 test: end of block Executed by:
| 10 | ||||||||||||||||||||||||
1177 | } executed 27 times by 1 test: end of block Executed by:
| 27 | ||||||||||||||||||||||||
1178 | - | |||||||||||||||||||||||||
1179 | for (; optind < argc
| 0-725 | ||||||||||||||||||||||||
1180 | { | - | ||||||||||||||||||||||||
1181 | file_names[n_files++] = argv[optind]; | - | ||||||||||||||||||||||||
1182 | } never executed: end of block | 0 | ||||||||||||||||||||||||
1183 | - | |||||||||||||||||||||||||
1184 | if (n_files == 0
| 271-454 | ||||||||||||||||||||||||
1185 | { | - | ||||||||||||||||||||||||
1186 | - | |||||||||||||||||||||||||
1187 | print_files (0, | - | ||||||||||||||||||||||||
1188 | ((void *)0) | - | ||||||||||||||||||||||||
1189 | ); | - | ||||||||||||||||||||||||
1190 | } executed 454 times by 1 test: end of block Executed by:
| 454 | ||||||||||||||||||||||||
1191 | else | - | ||||||||||||||||||||||||
1192 | { | - | ||||||||||||||||||||||||
1193 | if (parallel_files
| 37-234 | ||||||||||||||||||||||||
1194 | print_files (n_files, file_names); executed 37 times by 1 test: print_files (n_files, file_names); Executed by:
| 37 | ||||||||||||||||||||||||
1195 | else | - | ||||||||||||||||||||||||
1196 | { | - | ||||||||||||||||||||||||
1197 | for (unsigned int i = 0; i < n_files
| 234 | ||||||||||||||||||||||||
1198 | print_files (1, &file_names[i]); executed 234 times by 1 test: print_files (1, &file_names[i]); Executed by:
| 234 | ||||||||||||||||||||||||
1199 | } executed 234 times by 1 test: end of block Executed by:
| 234 | ||||||||||||||||||||||||
1200 | } | - | ||||||||||||||||||||||||
1201 | - | |||||||||||||||||||||||||
1202 | cleanup (); | - | ||||||||||||||||||||||||
1203 | ; | - | ||||||||||||||||||||||||
1204 | - | |||||||||||||||||||||||||
1205 | if (have_read_stdin
| 271-454 | ||||||||||||||||||||||||
1206 | rpl_fclose
| 0-454 | ||||||||||||||||||||||||
1207 | (
| 0-454 | ||||||||||||||||||||||||
1208 | stdin
| 0-454 | ||||||||||||||||||||||||
1209 | ) ==
| 0-454 | ||||||||||||||||||||||||
1210 | (-1)
| 0-454 | ||||||||||||||||||||||||
1211 | ) | - | ||||||||||||||||||||||||
1212 | (( never executed: !!sizeof (struct { _Static_assert (((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1213 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1214 | , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1215 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1216 | , never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1217 | (*__errno_location ()) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1218 | , never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1219 | dcgettext (((void *)0), never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1220 | "standard input" never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1221 | , 5) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1222 | ), (( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1223 | 0 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1224 | ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1225 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1226 | , never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1227 | (*__errno_location ()) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1228 | , never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1229 | dcgettext (((void *)0), never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1230 | "standard input" never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1231 | , 5) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1232 | ), (( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1233 | 0 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1234 | ) ? (void) 0 : __builtin_unreachable ())))); never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1235 | return executed 725 times by 1 test: failed_opens ? return failed_opens ? 1 : 0 ; Executed by:
executed 725 times by 1 test: return failed_opens ? 1 : 0 ; Executed by:
| 725 | ||||||||||||||||||||||||
1236 | 1 executed 725 times by 1 test: return failed_opens ? 1 : 0 ; Executed by:
| 725 | ||||||||||||||||||||||||
1237 | : executed 725 times by 1 test: return failed_opens ? 1 : 0 ; Executed by:
| 725 | ||||||||||||||||||||||||
1238 | 0 executed 725 times by 1 test: return failed_opens ? 1 : 0 ; Executed by:
| 725 | ||||||||||||||||||||||||
1239 | ; executed 725 times by 1 test: return failed_opens ? 1 : 0 ; Executed by:
| 725 | ||||||||||||||||||||||||
1240 | } | - | ||||||||||||||||||||||||
1241 | - | |||||||||||||||||||||||||
1242 | - | |||||||||||||||||||||||||
1243 | - | |||||||||||||||||||||||||
1244 | static void | - | ||||||||||||||||||||||||
1245 | getoptnum (const char *n_str, int min, int *num, const char *err) | - | ||||||||||||||||||||||||
1246 | { | - | ||||||||||||||||||||||||
1247 | intmax_t tnum = xdectoimax (n_str, min, 0x7fffffff, "", err, 0); | - | ||||||||||||||||||||||||
1248 | *num = tnum; | - | ||||||||||||||||||||||||
1249 | } executed 1015 times by 1 test: end of block Executed by:
| 1015 | ||||||||||||||||||||||||
1250 | - | |||||||||||||||||||||||||
1251 | - | |||||||||||||||||||||||||
1252 | - | |||||||||||||||||||||||||
1253 | - | |||||||||||||||||||||||||
1254 | - | |||||||||||||||||||||||||
1255 | - | |||||||||||||||||||||||||
1256 | - | |||||||||||||||||||||||||
1257 | static void | - | ||||||||||||||||||||||||
1258 | getoptarg (char *arg, char switch_char, char *character, int *number) | - | ||||||||||||||||||||||||
1259 | { | - | ||||||||||||||||||||||||
1260 | if (!((unsigned int) (*arg) - '0' <= 9)
| 33-168 | ||||||||||||||||||||||||
1261 | * executed 168 times by 1 test: character = *arg++;*character = *arg++; Executed by:
executed 168 times by 1 test: *character = *arg++; Executed by:
| 168 | ||||||||||||||||||||||||
1262 | if (*
| 13-188 | ||||||||||||||||||||||||
1263 | { | - | ||||||||||||||||||||||||
1264 | long int tmp_long; | - | ||||||||||||||||||||||||
1265 | if (xstrtol (arg,
| 0-188 | ||||||||||||||||||||||||
1266 | ((void *)0)
| 0-188 | ||||||||||||||||||||||||
1267 | , 10, &tmp_long, "") != LONGINT_OK
| 0-188 | ||||||||||||||||||||||||
1268 | || tmp_long <= 0
| 0-188 | ||||||||||||||||||||||||
1269 | { | - | ||||||||||||||||||||||||
1270 | error (0, 0x7fffffff < tmp_long ? | - | ||||||||||||||||||||||||
1271 | 75 | - | ||||||||||||||||||||||||
1272 | : | - | ||||||||||||||||||||||||
1273 | (*__errno_location ()) | - | ||||||||||||||||||||||||
1274 | , | - | ||||||||||||||||||||||||
1275 | - | |||||||||||||||||||||||||
1276 | dcgettext (((void *)0), | - | ||||||||||||||||||||||||
1277 | "'-%c' extra characters or invalid number in the argument: %s" | - | ||||||||||||||||||||||||
1278 | , 5) | - | ||||||||||||||||||||||||
1279 | , | - | ||||||||||||||||||||||||
1280 | switch_char, quote (arg)); | - | ||||||||||||||||||||||||
1281 | usage ( | - | ||||||||||||||||||||||||
1282 | 1 | - | ||||||||||||||||||||||||
1283 | ); | - | ||||||||||||||||||||||||
1284 | } never executed: end of block | 0 | ||||||||||||||||||||||||
1285 | *number = tmp_long; | - | ||||||||||||||||||||||||
1286 | } executed 188 times by 1 test: end of block Executed by:
| 188 | ||||||||||||||||||||||||
1287 | } executed 201 times by 1 test: end of block Executed by:
| 201 | ||||||||||||||||||||||||
1288 | - | |||||||||||||||||||||||||
1289 | - | |||||||||||||||||||||||||
1290 | - | |||||||||||||||||||||||||
1291 | static void | - | ||||||||||||||||||||||||
1292 | init_parameters (int number_of_files) | - | ||||||||||||||||||||||||
1293 | { | - | ||||||||||||||||||||||||
1294 | int chars_used_by_number = 0; | - | ||||||||||||||||||||||||
1295 | - | |||||||||||||||||||||||||
1296 | lines_per_body = lines_per_page - lines_per_header - lines_per_footer; | - | ||||||||||||||||||||||||
1297 | if (lines_per_body <= 0
| 3-722 | ||||||||||||||||||||||||
1298 | { | - | ||||||||||||||||||||||||
1299 | extremities = | - | ||||||||||||||||||||||||
1300 | 0 | - | ||||||||||||||||||||||||
1301 | ; | - | ||||||||||||||||||||||||
1302 | keep_FF = | - | ||||||||||||||||||||||||
1303 | 1 | - | ||||||||||||||||||||||||
1304 | ; | - | ||||||||||||||||||||||||
1305 | } executed 3 times by 1 test: end of block Executed by:
| 3 | ||||||||||||||||||||||||
1306 | if (extremities ==
| 158-567 | ||||||||||||||||||||||||
1307 | 0
| 158-567 | ||||||||||||||||||||||||
1308 | ) | - | ||||||||||||||||||||||||
1309 | lines_per_body = lines_per_page; executed 158 times by 1 test: lines_per_body = lines_per_page; Executed by:
| 158 | ||||||||||||||||||||||||
1310 | - | |||||||||||||||||||||||||
1311 | if (double_space
| 6-719 | ||||||||||||||||||||||||
1312 | lines_per_body = lines_per_body / 2; executed 6 times by 1 test: lines_per_body = lines_per_body / 2; Executed by:
| 6 | ||||||||||||||||||||||||
1313 | - | |||||||||||||||||||||||||
1314 | - | |||||||||||||||||||||||||
1315 | - | |||||||||||||||||||||||||
1316 | if (number_of_files == 0
| 271-454 | ||||||||||||||||||||||||
1317 | parallel_files = executed 454 times by 1 test: parallel_files = 0 ; Executed by:
| 454 | ||||||||||||||||||||||||
1318 | 0 executed 454 times by 1 test: parallel_files = 0 ; Executed by:
| 454 | ||||||||||||||||||||||||
1319 | ; executed 454 times by 1 test: parallel_files = 0 ; Executed by:
| 454 | ||||||||||||||||||||||||
1320 | - | |||||||||||||||||||||||||
1321 | if (parallel_files
| 37-688 | ||||||||||||||||||||||||
1322 | columns = number_of_files; executed 37 times by 1 test: columns = number_of_files; Executed by:
| 37 | ||||||||||||||||||||||||
1323 | - | |||||||||||||||||||||||||
1324 | - | |||||||||||||||||||||||||
1325 | - | |||||||||||||||||||||||||
1326 | if (storing_columns
| 196-529 | ||||||||||||||||||||||||
1327 | balance_columns = executed 529 times by 1 test: balance_columns = 1 ; Executed by:
| 529 | ||||||||||||||||||||||||
1328 | 1 executed 529 times by 1 test: balance_columns = 1 ; Executed by:
| 529 | ||||||||||||||||||||||||
1329 | ; executed 529 times by 1 test: balance_columns = 1 ; Executed by:
| 529 | ||||||||||||||||||||||||
1330 | - | |||||||||||||||||||||||||
1331 | - | |||||||||||||||||||||||||
1332 | if (columns > 1
| 271-454 | ||||||||||||||||||||||||
1333 | { | - | ||||||||||||||||||||||||
1334 | if (!use_col_separator
| 54-400 | ||||||||||||||||||||||||
1335 | { | - | ||||||||||||||||||||||||
1336 | - | |||||||||||||||||||||||||
1337 | if (join_lines
| 22-378 | ||||||||||||||||||||||||
1338 | col_sep_string = line_separator; executed 22 times by 1 test: col_sep_string = line_separator; Executed by:
| 22 | ||||||||||||||||||||||||
1339 | else | - | ||||||||||||||||||||||||
1340 | col_sep_string = column_separator; executed 378 times by 1 test: col_sep_string = column_separator; Executed by:
| 378 | ||||||||||||||||||||||||
1341 | - | |||||||||||||||||||||||||
1342 | col_sep_length = 1; | - | ||||||||||||||||||||||||
1343 | use_col_separator = | - | ||||||||||||||||||||||||
1344 | 1 | - | ||||||||||||||||||||||||
1345 | ; | - | ||||||||||||||||||||||||
1346 | } executed 400 times by 1 test: end of block Executed by:
| 400 | ||||||||||||||||||||||||
1347 | - | |||||||||||||||||||||||||
1348 | - | |||||||||||||||||||||||||
1349 | else if (!join_lines
| 0-42 | ||||||||||||||||||||||||
1350 | col_sep_string = column_separator; never executed: col_sep_string = column_separator; | 0 | ||||||||||||||||||||||||
1351 | - | |||||||||||||||||||||||||
1352 | truncate_lines = | - | ||||||||||||||||||||||||
1353 | 1 | - | ||||||||||||||||||||||||
1354 | ; | - | ||||||||||||||||||||||||
1355 | tabify_output = | - | ||||||||||||||||||||||||
1356 | 1 | - | ||||||||||||||||||||||||
1357 | ; | - | ||||||||||||||||||||||||
1358 | } executed 454 times by 1 test: end of block Executed by:
| 454 | ||||||||||||||||||||||||
1359 | else | - | ||||||||||||||||||||||||
1360 | storing_columns = executed 271 times by 1 test: storing_columns = 0 ; Executed by:
| 271 | ||||||||||||||||||||||||
1361 | 0 executed 271 times by 1 test: storing_columns = 0 ; Executed by:
| 271 | ||||||||||||||||||||||||
1362 | ; executed 271 times by 1 test: storing_columns = 0 ; Executed by:
| 271 | ||||||||||||||||||||||||
1363 | - | |||||||||||||||||||||||||
1364 | - | |||||||||||||||||||||||||
1365 | if (join_lines
| 43-682 | ||||||||||||||||||||||||
1366 | truncate_lines = executed 43 times by 1 test: truncate_lines = 0 ; Executed by:
| 43 | ||||||||||||||||||||||||
1367 | 0 executed 43 times by 1 test: truncate_lines = 0 ; Executed by:
| 43 | ||||||||||||||||||||||||
1368 | ; executed 43 times by 1 test: truncate_lines = 0 ; Executed by:
| 43 | ||||||||||||||||||||||||
1369 | - | |||||||||||||||||||||||||
1370 | if (numbered_lines
| 192-533 | ||||||||||||||||||||||||
1371 | { | - | ||||||||||||||||||||||||
1372 | int chars_per_default_tab = 8; | - | ||||||||||||||||||||||||
1373 | - | |||||||||||||||||||||||||
1374 | line_count = start_line_num; | - | ||||||||||||||||||||||||
1375 | - | |||||||||||||||||||||||||
1376 | - | |||||||||||||||||||||||||
1377 | - | |||||||||||||||||||||||||
1378 | - | |||||||||||||||||||||||||
1379 | - | |||||||||||||||||||||||||
1380 | - | |||||||||||||||||||||||||
1381 | - | |||||||||||||||||||||||||
1382 | if (number_separator == '\t'
| 27-165 | ||||||||||||||||||||||||
1383 | number_width = (chars_per_number executed 27 times by 1 test: number_width = (chars_per_number + ((chars_per_default_tab) - ((chars_per_number) % (chars_per_default_tab)))); Executed by:
| 27 | ||||||||||||||||||||||||
1384 | + ((chars_per_default_tab) - ((chars_per_number) % (chars_per_default_tab)))); executed 27 times by 1 test: number_width = (chars_per_number + ((chars_per_default_tab) - ((chars_per_number) % (chars_per_default_tab)))); Executed by:
| 27 | ||||||||||||||||||||||||
1385 | else | - | ||||||||||||||||||||||||
1386 | number_width = chars_per_number + 1; executed 165 times by 1 test: number_width = chars_per_number + 1; Executed by:
| 165 | ||||||||||||||||||||||||
1387 | - | |||||||||||||||||||||||||
1388 | - | |||||||||||||||||||||||||
1389 | - | |||||||||||||||||||||||||
1390 | if (parallel_files
| 12-180 | ||||||||||||||||||||||||
1391 | chars_used_by_number = number_width; executed 12 times by 1 test: chars_used_by_number = number_width; Executed by:
| 12 | ||||||||||||||||||||||||
1392 | } executed 192 times by 1 test: end of block Executed by:
| 192 | ||||||||||||||||||||||||
1393 | - | |||||||||||||||||||||||||
1394 | int sep_chars, useful_chars; | - | ||||||||||||||||||||||||
1395 | if (__builtin_mul_overflow (columns - 1, col_sep_length, &sep_chars)
| 0-725 | ||||||||||||||||||||||||
1396 | sep_chars = 0x7fffffff; never executed: sep_chars = 0x7fffffff; | 0 | ||||||||||||||||||||||||
1397 | if (__builtin_sub_overflow (chars_per_line - chars_used_by_number, sep_chars, &useful_chars)
| 0-725 | ||||||||||||||||||||||||
1398 | ) | - | ||||||||||||||||||||||||
1399 | useful_chars = 0; never executed: useful_chars = 0; | 0 | ||||||||||||||||||||||||
1400 | chars_per_column = useful_chars / columns; | - | ||||||||||||||||||||||||
1401 | - | |||||||||||||||||||||||||
1402 | if (chars_per_column < 1
| 0-725 | ||||||||||||||||||||||||
1403 | (( never executed: !!sizeof (struct { _Static_assert (((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1404 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1405 | , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1406 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1407 | , 0, never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1408 | dcgettext (((void *)0), never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1409 | "page width too narrow" never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1410 | , 5) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1411 | ), (( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1412 | 0 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1413 | ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1414 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1415 | , 0, never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1416 | dcgettext (((void *)0), never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1417 | "page width too narrow" never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1418 | , 5) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1419 | ), (( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1420 | 0 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1421 | ) ? (void) 0 : __builtin_unreachable ())))); never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1422 | - | |||||||||||||||||||||||||
1423 | if (numbered_lines
| 192-533 | ||||||||||||||||||||||||
1424 | { | - | ||||||||||||||||||||||||
1425 | free (number_buff); | - | ||||||||||||||||||||||||
1426 | number_buff = xmalloc ( | - | ||||||||||||||||||||||||
1427 | ((( | - | ||||||||||||||||||||||||
1428 | chars_per_number | - | ||||||||||||||||||||||||
1429 | )>( | - | ||||||||||||||||||||||||
1430 | (((((sizeof (line_number) * 8) - (! ((__typeof__ (line_number)) 0 < (__typeof__ (line_number)) -1))) * 146 + 484) / 485) + (! ((__typeof__ (line_number)) 0 < (__typeof__ (line_number)) -1))) | - | ||||||||||||||||||||||||
1431 | ))?( | - | ||||||||||||||||||||||||
1432 | chars_per_number | - | ||||||||||||||||||||||||
1433 | ):( | - | ||||||||||||||||||||||||
1434 | (((((sizeof (line_number) * 8) - (! ((__typeof__ (line_number)) 0 < (__typeof__ (line_number)) -1))) * 146 + 484) / 485) + (! ((__typeof__ (line_number)) 0 < (__typeof__ (line_number)) -1))) | - | ||||||||||||||||||||||||
1435 | )) | - | ||||||||||||||||||||||||
1436 | - | |||||||||||||||||||||||||
1437 | + 1); | - | ||||||||||||||||||||||||
1438 | } executed 192 times by 1 test: end of block Executed by:
| 192 | ||||||||||||||||||||||||
1439 | - | |||||||||||||||||||||||||
1440 | - | |||||||||||||||||||||||||
1441 | - | |||||||||||||||||||||||||
1442 | - | |||||||||||||||||||||||||
1443 | - | |||||||||||||||||||||||||
1444 | - | |||||||||||||||||||||||||
1445 | free (clump_buff); | - | ||||||||||||||||||||||||
1446 | clump_buff = xmalloc ( | - | ||||||||||||||||||||||||
1447 | ((( | - | ||||||||||||||||||||||||
1448 | 8 | - | ||||||||||||||||||||||||
1449 | )>( | - | ||||||||||||||||||||||||
1450 | chars_per_input_tab | - | ||||||||||||||||||||||||
1451 | ))?( | - | ||||||||||||||||||||||||
1452 | 8 | - | ||||||||||||||||||||||||
1453 | ):( | - | ||||||||||||||||||||||||
1454 | chars_per_input_tab | - | ||||||||||||||||||||||||
1455 | )) | - | ||||||||||||||||||||||||
1456 | ); | - | ||||||||||||||||||||||||
1457 | } executed 725 times by 1 test: end of block Executed by:
| 725 | ||||||||||||||||||||||||
1458 | static | - | ||||||||||||||||||||||||
1459 | _Bool | - | ||||||||||||||||||||||||
1460 | - | |||||||||||||||||||||||||
1461 | init_fps (int number_of_files, char **av) | - | ||||||||||||||||||||||||
1462 | { | - | ||||||||||||||||||||||||
1463 | COLUMN *p; | - | ||||||||||||||||||||||||
1464 | - | |||||||||||||||||||||||||
1465 | total_files = 0; | - | ||||||||||||||||||||||||
1466 | - | |||||||||||||||||||||||||
1467 | free (column_vector); | - | ||||||||||||||||||||||||
1468 | column_vector = xnmalloc (columns, sizeof (COLUMN)); | - | ||||||||||||||||||||||||
1469 | - | |||||||||||||||||||||||||
1470 | if (parallel_files
| 37-688 | ||||||||||||||||||||||||
1471 | { | - | ||||||||||||||||||||||||
1472 | int files_left = number_of_files; | - | ||||||||||||||||||||||||
1473 | for (p = column_vector; files_left--
| 37-83 | ||||||||||||||||||||||||
1474 | { | - | ||||||||||||||||||||||||
1475 | if (! open_file (*av, p)
| 0-83 | ||||||||||||||||||||||||
1476 | { | - | ||||||||||||||||||||||||
1477 | --p; | - | ||||||||||||||||||||||||
1478 | --columns; | - | ||||||||||||||||||||||||
1479 | } never executed: end of block | 0 | ||||||||||||||||||||||||
1480 | } executed 83 times by 1 test: end of block Executed by:
| 83 | ||||||||||||||||||||||||
1481 | if (columns == 0
| 0-37 | ||||||||||||||||||||||||
1482 | return never executed: return 0 ; never executed: return 0 ; | 0 | ||||||||||||||||||||||||
1483 | 0 never executed: return 0 ; | 0 | ||||||||||||||||||||||||
1484 | ; never executed: return 0 ; | 0 | ||||||||||||||||||||||||
1485 | init_header ("", -1); | - | ||||||||||||||||||||||||
1486 | } executed 37 times by 1 test: end of block Executed by:
| 37 | ||||||||||||||||||||||||
1487 | else | - | ||||||||||||||||||||||||
1488 | { | - | ||||||||||||||||||||||||
1489 | p = column_vector; | - | ||||||||||||||||||||||||
1490 | if (number_of_files > 0
| 234-454 | ||||||||||||||||||||||||
1491 | { | - | ||||||||||||||||||||||||
1492 | if (! open_file (*av, p)
| 0-234 | ||||||||||||||||||||||||
1493 | return never executed: return 0 ; never executed: return 0 ; | 0 | ||||||||||||||||||||||||
1494 | 0 never executed: return 0 ; | 0 | ||||||||||||||||||||||||
1495 | ; never executed: return 0 ; | 0 | ||||||||||||||||||||||||
1496 | init_header (*av, fileno (p->fp)); | - | ||||||||||||||||||||||||
1497 | p->lines_stored = 0; | - | ||||||||||||||||||||||||
1498 | } executed 234 times by 1 test: end of block Executed by:
| 234 | ||||||||||||||||||||||||
1499 | else | - | ||||||||||||||||||||||||
1500 | { | - | ||||||||||||||||||||||||
1501 | p->name = | - | ||||||||||||||||||||||||
1502 | dcgettext (((void *)0), | - | ||||||||||||||||||||||||
1503 | "standard input" | - | ||||||||||||||||||||||||
1504 | , 5) | - | ||||||||||||||||||||||||
1505 | ; | - | ||||||||||||||||||||||||
1506 | p->fp = | - | ||||||||||||||||||||||||
1507 | stdin | - | ||||||||||||||||||||||||
1508 | ; | - | ||||||||||||||||||||||||
1509 | have_read_stdin = | - | ||||||||||||||||||||||||
1510 | 1 | - | ||||||||||||||||||||||||
1511 | ; | - | ||||||||||||||||||||||||
1512 | p->status = OPEN; | - | ||||||||||||||||||||||||
1513 | p->full_page_printed = | - | ||||||||||||||||||||||||
1514 | 0 | - | ||||||||||||||||||||||||
1515 | ; | - | ||||||||||||||||||||||||
1516 | ++total_files; | - | ||||||||||||||||||||||||
1517 | init_header ("", -1); | - | ||||||||||||||||||||||||
1518 | p->lines_stored = 0; | - | ||||||||||||||||||||||||
1519 | } executed 454 times by 1 test: end of block Executed by:
| 454 | ||||||||||||||||||||||||
1520 | - | |||||||||||||||||||||||||
1521 | char const *firstname = p->name; | - | ||||||||||||||||||||||||
1522 | FILE *firstfp = p->fp; | - | ||||||||||||||||||||||||
1523 | int i; | - | ||||||||||||||||||||||||
1524 | for (i = columns - 1, ++p; i
| 627-688 | ||||||||||||||||||||||||
1525 | { | - | ||||||||||||||||||||||||
1526 | p->name = firstname; | - | ||||||||||||||||||||||||
1527 | p->fp = firstfp; | - | ||||||||||||||||||||||||
1528 | p->status = OPEN; | - | ||||||||||||||||||||||||
1529 | p->full_page_printed = | - | ||||||||||||||||||||||||
1530 | 0 | - | ||||||||||||||||||||||||
1531 | ; | - | ||||||||||||||||||||||||
1532 | p->lines_stored = 0; | - | ||||||||||||||||||||||||
1533 | } executed 627 times by 1 test: end of block Executed by:
| 627 | ||||||||||||||||||||||||
1534 | } executed 688 times by 1 test: end of block Executed by:
| 688 | ||||||||||||||||||||||||
1535 | files_ready_to_read = total_files; | - | ||||||||||||||||||||||||
1536 | return executed 725 times by 1 test: return 1 ; Executed by:
executed 725 times by 1 test: return 1 ; Executed by:
| 725 | ||||||||||||||||||||||||
1537 | 1 executed 725 times by 1 test: return 1 ; Executed by:
| 725 | ||||||||||||||||||||||||
1538 | ; executed 725 times by 1 test: return 1 ; Executed by:
| 725 | ||||||||||||||||||||||||
1539 | } | - | ||||||||||||||||||||||||
1540 | - | |||||||||||||||||||||||||
1541 | - | |||||||||||||||||||||||||
1542 | - | |||||||||||||||||||||||||
1543 | - | |||||||||||||||||||||||||
1544 | - | |||||||||||||||||||||||||
1545 | - | |||||||||||||||||||||||||
1546 | - | |||||||||||||||||||||||||
1547 | static void | - | ||||||||||||||||||||||||
1548 | init_funcs (void) | - | ||||||||||||||||||||||||
1549 | { | - | ||||||||||||||||||||||||
1550 | int i, h, h_next; | - | ||||||||||||||||||||||||
1551 | COLUMN *p; | - | ||||||||||||||||||||||||
1552 | - | |||||||||||||||||||||||||
1553 | h = chars_per_margin; | - | ||||||||||||||||||||||||
1554 | - | |||||||||||||||||||||||||
1555 | if (!truncate_lines
| 287-438 | ||||||||||||||||||||||||
1556 | h_next = 0; executed 287 times by 1 test: h_next = 0; Executed by:
| 287 | ||||||||||||||||||||||||
1557 | else | - | ||||||||||||||||||||||||
1558 | { | - | ||||||||||||||||||||||||
1559 | - | |||||||||||||||||||||||||
1560 | - | |||||||||||||||||||||||||
1561 | - | |||||||||||||||||||||||||
1562 | if (parallel_files
| 10-408 | ||||||||||||||||||||||||
1563 | h_next = h + chars_per_column + number_width; executed 10 times by 1 test: h_next = h + chars_per_column + number_width; Executed by:
| 10 | ||||||||||||||||||||||||
1564 | else | - | ||||||||||||||||||||||||
1565 | h_next = h + chars_per_column; executed 428 times by 1 test: h_next = h + chars_per_column; Executed by:
| 428 | ||||||||||||||||||||||||
1566 | } | - | ||||||||||||||||||||||||
1567 | - | |||||||||||||||||||||||||
1568 | - | |||||||||||||||||||||||||
1569 | - | |||||||||||||||||||||||||
1570 | h = h + col_sep_length; | - | ||||||||||||||||||||||||
1571 | - | |||||||||||||||||||||||||
1572 | - | |||||||||||||||||||||||||
1573 | - | |||||||||||||||||||||||||
1574 | for (p = column_vector, i = 1; i < columns
| 673-725 | ||||||||||||||||||||||||
1575 | { | - | ||||||||||||||||||||||||
1576 | if (storing_columns
| 292-381 | ||||||||||||||||||||||||
1577 | { | - | ||||||||||||||||||||||||
1578 | p->char_func = store_char; | - | ||||||||||||||||||||||||
1579 | p->print_func = print_stored; | - | ||||||||||||||||||||||||
1580 | } executed 381 times by 1 test: end of block Executed by:
| 381 | ||||||||||||||||||||||||
1581 | else | - | ||||||||||||||||||||||||
1582 | - | |||||||||||||||||||||||||
1583 | { | - | ||||||||||||||||||||||||
1584 | p->char_func = print_char; | - | ||||||||||||||||||||||||
1585 | p->print_func = read_line; | - | ||||||||||||||||||||||||
1586 | } executed 292 times by 1 test: end of block Executed by:
| 292 | ||||||||||||||||||||||||
1587 | - | |||||||||||||||||||||||||
1588 | - | |||||||||||||||||||||||||
1589 | - | |||||||||||||||||||||||||
1590 | p->numbered = numbered_lines
| 8-524 | ||||||||||||||||||||||||
1591 | p->start_position = h; | - | ||||||||||||||||||||||||
1592 | - | |||||||||||||||||||||||||
1593 | - | |||||||||||||||||||||||||
1594 | - | |||||||||||||||||||||||||
1595 | - | |||||||||||||||||||||||||
1596 | - | |||||||||||||||||||||||||
1597 | if (!truncate_lines
| 49-624 | ||||||||||||||||||||||||
1598 | { | - | ||||||||||||||||||||||||
1599 | h = 0; | - | ||||||||||||||||||||||||
1600 | h_next = 0; | - | ||||||||||||||||||||||||
1601 | } executed 49 times by 1 test: end of block Executed by:
| 49 | ||||||||||||||||||||||||
1602 | else | - | ||||||||||||||||||||||||
1603 | { | - | ||||||||||||||||||||||||
1604 | h = h_next + col_sep_length; | - | ||||||||||||||||||||||||
1605 | h_next = h + chars_per_column; | - | ||||||||||||||||||||||||
1606 | } executed 624 times by 1 test: end of block Executed by:
| 624 | ||||||||||||||||||||||||
1607 | } | - | ||||||||||||||||||||||||
1608 | - | |||||||||||||||||||||||||
1609 | - | |||||||||||||||||||||||||
1610 | - | |||||||||||||||||||||||||
1611 | - | |||||||||||||||||||||||||
1612 | - | |||||||||||||||||||||||||
1613 | if (storing_columns
| 0-467 | ||||||||||||||||||||||||
1614 | { | - | ||||||||||||||||||||||||
1615 | p->char_func = store_char; | - | ||||||||||||||||||||||||
1616 | p->print_func = print_stored; | - | ||||||||||||||||||||||||
1617 | } executed 258 times by 1 test: end of block Executed by:
| 258 | ||||||||||||||||||||||||
1618 | else | - | ||||||||||||||||||||||||
1619 | { | - | ||||||||||||||||||||||||
1620 | p->char_func = print_char; | - | ||||||||||||||||||||||||
1621 | p->print_func = read_line; | - | ||||||||||||||||||||||||
1622 | } executed 467 times by 1 test: end of block Executed by:
| 467 | ||||||||||||||||||||||||
1623 | - | |||||||||||||||||||||||||
1624 | p->numbered = numbered_lines
| 0-533 | ||||||||||||||||||||||||
1625 | p->start_position = h; | - | ||||||||||||||||||||||||
1626 | } executed 725 times by 1 test: end of block Executed by:
| 725 | ||||||||||||||||||||||||
1627 | - | |||||||||||||||||||||||||
1628 | - | |||||||||||||||||||||||||
1629 | - | |||||||||||||||||||||||||
1630 | - | |||||||||||||||||||||||||
1631 | - | |||||||||||||||||||||||||
1632 | - | |||||||||||||||||||||||||
1633 | static | - | ||||||||||||||||||||||||
1634 | _Bool | - | ||||||||||||||||||||||||
1635 | - | |||||||||||||||||||||||||
1636 | open_file (char *name, COLUMN *p) | - | ||||||||||||||||||||||||
1637 | { | - | ||||||||||||||||||||||||
1638 | if ((
| 0-317 | ||||||||||||||||||||||||
1639 | __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (
| 0-317 | ||||||||||||||||||||||||
1640 | name
| 0-317 | ||||||||||||||||||||||||
1641 | ) && __builtin_constant_p (
| 0-317 | ||||||||||||||||||||||||
1642 | "-"
| 0-317 | ||||||||||||||||||||||||
1643 | ) && (__s1_len = __builtin_strlen (
| 0-317 | ||||||||||||||||||||||||
1644 | name
| 0-317 | ||||||||||||||||||||||||
1645 | ), __s2_len = __builtin_strlen (
| 0-317 | ||||||||||||||||||||||||
1646 | "-"
| 0-317 | ||||||||||||||||||||||||
1647 | ), (!((size_t)(const void *)((
| 0-317 | ||||||||||||||||||||||||
1648 | name
| 0-317 | ||||||||||||||||||||||||
1649 | ) + 1) - (size_t)(const void *)(
| 0-317 | ||||||||||||||||||||||||
1650 | name
| 0-317 | ||||||||||||||||||||||||
1651 | ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((
| 0-317 | ||||||||||||||||||||||||
1652 | "-"
| 0-317 | ||||||||||||||||||||||||
1653 | ) + 1) - (size_t)(const void *)(
| 0-317 | ||||||||||||||||||||||||
1654 | "-"
| 0-317 | ||||||||||||||||||||||||
1655 | ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (
| 0-317 | ||||||||||||||||||||||||
1656 | name
| 0-317 | ||||||||||||||||||||||||
1657 | ,
| 0-317 | ||||||||||||||||||||||||
1658 | "-"
| 0-317 | ||||||||||||||||||||||||
1659 | ) : (__builtin_constant_p (
| 0-317 | ||||||||||||||||||||||||
1660 | name
| 0-317 | ||||||||||||||||||||||||
1661 | ) && ((size_t)(const void *)((
| 0-317 | ||||||||||||||||||||||||
1662 | name
| 0-317 | ||||||||||||||||||||||||
1663 | ) + 1) - (size_t)(const void *)(
| 0-317 | ||||||||||||||||||||||||
1664 | name
| 0-317 | ||||||||||||||||||||||||
1665 | ) == 1) && (__s1_len = __builtin_strlen (
| 0-317 | ||||||||||||||||||||||||
1666 | name
| 0-317 | ||||||||||||||||||||||||
1667 | ), __s1_len < 4) ? (__builtin_constant_p (
| 0-317 | ||||||||||||||||||||||||
1668 | "-"
| 0-317 | ||||||||||||||||||||||||
1669 | ) && ((size_t)(const void *)((
| 0-317 | ||||||||||||||||||||||||
1670 | "-"
| 0-317 | ||||||||||||||||||||||||
1671 | ) + 1) - (size_t)(const void *)(
| 0-317 | ||||||||||||||||||||||||
1672 | "-"
| 0-317 | ||||||||||||||||||||||||
1673 | ) == 1) ? __builtin_strcmp (
| 0-317 | ||||||||||||||||||||||||
1674 | name
| 0-317 | ||||||||||||||||||||||||
1675 | ,
| 0-317 | ||||||||||||||||||||||||
1676 | "-"
| 0-317 | ||||||||||||||||||||||||
1677 | ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
| 0-317 | ||||||||||||||||||||||||
1678 | "-"
| 0-317 | ||||||||||||||||||||||||
1679 | ); int __result = (((const unsigned char *) (const char *) (
| 0-317 | ||||||||||||||||||||||||
1680 | name
| 0-317 | ||||||||||||||||||||||||
1681 | ))[0] - __s2[0]); if (__s1_len > 0
| 0-317 | ||||||||||||||||||||||||
1682 | name
| 0-317 | ||||||||||||||||||||||||
1683 | ))[1] - __s2[1]); if (__s1_len > 1
| 0-317 | ||||||||||||||||||||||||
1684 | name
| 0-317 | ||||||||||||||||||||||||
1685 | ))[2] - __s2[2]); if (__s1_len > 2
never executed: __result = (((const unsigned char *) (const char *) ( name ))[3] - __s2[3]);
| 0-317 | ||||||||||||||||||||||||
1686 | name
never executed: __result = (((const unsigned char *) (const char *) ( name ))[3] - __s2[3]); | 0-317 | ||||||||||||||||||||||||
1687 | ))[3] - __s2[3]);
never executed: }__result = (((const unsigned char *) (const char *) ( name ))[3] - __s2[3]); never executed: }end of block never executed: __result; }))) : (__builtin_constant_p (end of block
| 0-317 | ||||||||||||||||||||||||
1688 | "-"
| 0-317 | ||||||||||||||||||||||||
1689 | ) && ((size_t)(const void *)((
| 0-317 | ||||||||||||||||||||||||
1690 | "-"
| 0-317 | ||||||||||||||||||||||||
1691 | ) + 1) - (size_t)(const void *)(
| 0-317 | ||||||||||||||||||||||||
1692 | "-"
| 0-317 | ||||||||||||||||||||||||
1693 | ) == 1) && (__s2_len = __builtin_strlen (
| 0-317 | ||||||||||||||||||||||||
1694 | "-"
| 0-317 | ||||||||||||||||||||||||
1695 | ), __s2_len < 4) ? (__builtin_constant_p (
| 0-317 | ||||||||||||||||||||||||
1696 | name
| 0-317 | ||||||||||||||||||||||||
1697 | ) && ((size_t)(const void *)((
| 0-317 | ||||||||||||||||||||||||
1698 | name
| 0-317 | ||||||||||||||||||||||||
1699 | ) + 1) - (size_t)(const void *)(
| 0-317 | ||||||||||||||||||||||||
1700 | name
| 0-317 | ||||||||||||||||||||||||
1701 | ) == 1) ? __builtin_strcmp (
| 0-317 | ||||||||||||||||||||||||
1702 | name
| 0-317 | ||||||||||||||||||||||||
1703 | ,
| 0-317 | ||||||||||||||||||||||||
1704 | "-"
| 0-317 | ||||||||||||||||||||||||
1705 | ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
| 0-317 | ||||||||||||||||||||||||
1706 | name
| 0-317 | ||||||||||||||||||||||||
1707 | ); int __result = (((const unsigned char *) (const char *) (
| 0-317 | ||||||||||||||||||||||||
1708 | "-"
| 0-317 | ||||||||||||||||||||||||
1709 | ))[0] - __s2[0]); if (__s2_len > 0
| 0-317 | ||||||||||||||||||||||||
1710 | "-"
| 0-317 | ||||||||||||||||||||||||
1711 | ))[1] - __s2[1]); if (__s2_len > 1
| 0-317 | ||||||||||||||||||||||||
1712 | "-"
| 0-317 | ||||||||||||||||||||||||
1713 | ))[2] - __s2[2]); if (__s2_len > 2
never executed: __result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]);
| 0-317 | ||||||||||||||||||||||||
1714 | "-"
never executed: __result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]); | 0-317 | ||||||||||||||||||||||||
1715 | ))[3] - __s2[3]);
never executed: }__result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]); never executed: }end of block never executed: __result; }))) : __builtin_strcmp (end of block
| 0-317 | ||||||||||||||||||||||||
1716 | name
| 0-317 | ||||||||||||||||||||||||
1717 | ,
| 0-317 | ||||||||||||||||||||||||
1718 | "-"
| 0-317 | ||||||||||||||||||||||||
1719 | )))); })
| 0-317 | ||||||||||||||||||||||||
1720 | == 0)
| 0-317 | ||||||||||||||||||||||||
1721 | { | - | ||||||||||||||||||||||||
1722 | p->name = | - | ||||||||||||||||||||||||
1723 | dcgettext (((void *)0), | - | ||||||||||||||||||||||||
1724 | "standard input" | - | ||||||||||||||||||||||||
1725 | , 5) | - | ||||||||||||||||||||||||
1726 | ; | - | ||||||||||||||||||||||||
1727 | p->fp = | - | ||||||||||||||||||||||||
1728 | stdin | - | ||||||||||||||||||||||||
1729 | ; | - | ||||||||||||||||||||||||
1730 | have_read_stdin = | - | ||||||||||||||||||||||||
1731 | 1 | - | ||||||||||||||||||||||||
1732 | ; | - | ||||||||||||||||||||||||
1733 | } never executed: end of block | 0 | ||||||||||||||||||||||||
1734 | else | - | ||||||||||||||||||||||||
1735 | { | - | ||||||||||||||||||||||||
1736 | p->name = name; | - | ||||||||||||||||||||||||
1737 | p->fp = fopen_safer (name, "r"); | - | ||||||||||||||||||||||||
1738 | } executed 317 times by 1 test: end of block Executed by:
| 317 | ||||||||||||||||||||||||
1739 | if (p->fp ==
| 0-317 | ||||||||||||||||||||||||
1740 | ((void *)0)
| 0-317 | ||||||||||||||||||||||||
1741 | ) | - | ||||||||||||||||||||||||
1742 | { | - | ||||||||||||||||||||||||
1743 | failed_opens = | - | ||||||||||||||||||||||||
1744 | 1 | - | ||||||||||||||||||||||||
1745 | ; | - | ||||||||||||||||||||||||
1746 | if (!ignore_failed_opens
| 0 | ||||||||||||||||||||||||
1747 | error (0, never executed: error (0, (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)); | 0 | ||||||||||||||||||||||||
1748 | (*__errno_location ()) never executed: error (0, (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)); | 0 | ||||||||||||||||||||||||
1749 | , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)); never executed: error (0, (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)); | 0 | ||||||||||||||||||||||||
1750 | return never executed: return 0 ; never executed: return 0 ; | 0 | ||||||||||||||||||||||||
1751 | 0 never executed: return 0 ; | 0 | ||||||||||||||||||||||||
1752 | ; never executed: return 0 ; | 0 | ||||||||||||||||||||||||
1753 | } | - | ||||||||||||||||||||||||
1754 | fadvise (p->fp, FADVISE_SEQUENTIAL); | - | ||||||||||||||||||||||||
1755 | p->status = OPEN; | - | ||||||||||||||||||||||||
1756 | p->full_page_printed = | - | ||||||||||||||||||||||||
1757 | 0 | - | ||||||||||||||||||||||||
1758 | ; | - | ||||||||||||||||||||||||
1759 | ++total_files; | - | ||||||||||||||||||||||||
1760 | return executed 317 times by 1 test: return 1 ; Executed by:
executed 317 times by 1 test: return 1 ; Executed by:
| 317 | ||||||||||||||||||||||||
1761 | 1 executed 317 times by 1 test: return 1 ; Executed by:
| 317 | ||||||||||||||||||||||||
1762 | ; executed 317 times by 1 test: return 1 ; Executed by:
| 317 | ||||||||||||||||||||||||
1763 | } | - | ||||||||||||||||||||||||
1764 | - | |||||||||||||||||||||||||
1765 | - | |||||||||||||||||||||||||
1766 | - | |||||||||||||||||||||||||
1767 | - | |||||||||||||||||||||||||
1768 | - | |||||||||||||||||||||||||
1769 | - | |||||||||||||||||||||||||
1770 | static void | - | ||||||||||||||||||||||||
1771 | close_file (COLUMN *p) | - | ||||||||||||||||||||||||
1772 | { | - | ||||||||||||||||||||||||
1773 | COLUMN *q; | - | ||||||||||||||||||||||||
1774 | int i; | - | ||||||||||||||||||||||||
1775 | - | |||||||||||||||||||||||||
1776 | if (p->status == CLOSED
| 0-753 | ||||||||||||||||||||||||
1777 | return; never executed: return; | 0 | ||||||||||||||||||||||||
1778 | if (ferror_unlocked (p->fp)
| 0-753 | ||||||||||||||||||||||||
1779 | (( never executed: !!sizeof (struct { _Static_assert (((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1780 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1781 | , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1782 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1783 | , never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1784 | (*__errno_location ()) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1785 | , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1786 | 0 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1787 | ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1788 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1789 | , never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1790 | (*__errno_location ()) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1791 | , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1792 | 0 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1793 | ) ? (void) 0 : __builtin_unreachable ())))); never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1794 | if (fileno (p->fp) !=
| 311-442 | ||||||||||||||||||||||||
1795 | 0
| 311-442 | ||||||||||||||||||||||||
1796 | && | - | ||||||||||||||||||||||||
1797 | rpl_fclose
| 0-311 | ||||||||||||||||||||||||
1798 | (p->fp) != 0
| 0-311 | ||||||||||||||||||||||||
1799 | (( never executed: !!sizeof (struct { _Static_assert (((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1800 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1801 | , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1802 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1803 | , never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1804 | (*__errno_location ()) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1805 | , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1806 | 0 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1807 | ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1808 | 1 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1809 | , never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1810 | (*__errno_location ()) never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1811 | , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1812 | 0 never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1813 | ) ? (void) 0 : __builtin_unreachable ())))); never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))); | 0 | ||||||||||||||||||||||||
1814 | - | |||||||||||||||||||||||||
1815 | if (!parallel_files
| 83-670 | ||||||||||||||||||||||||
1816 | { | - | ||||||||||||||||||||||||
1817 | for (q = column_vector, i = columns; i
| 670-1285 | ||||||||||||||||||||||||
1818 | { | - | ||||||||||||||||||||||||
1819 | q->status = CLOSED; | - | ||||||||||||||||||||||||
1820 | if (q->lines_stored == 0
| 279-1006 | ||||||||||||||||||||||||
1821 | { | - | ||||||||||||||||||||||||
1822 | q->lines_to_print = 0; | - | ||||||||||||||||||||||||
1823 | } executed 1006 times by 1 test: end of block Executed by:
| 1006 | ||||||||||||||||||||||||
1824 | } executed 1285 times by 1 test: end of block Executed by:
| 1285 | ||||||||||||||||||||||||
1825 | } executed 670 times by 1 test: end of block Executed by:
| 670 | ||||||||||||||||||||||||
1826 | else | - | ||||||||||||||||||||||||
1827 | { | - | ||||||||||||||||||||||||
1828 | p->status = CLOSED; | - | ||||||||||||||||||||||||
1829 | p->lines_to_print = 0; | - | ||||||||||||||||||||||||
1830 | } executed 83 times by 1 test: end of block Executed by:
| 83 | ||||||||||||||||||||||||
1831 | - | |||||||||||||||||||||||||
1832 | --files_ready_to_read; | - | ||||||||||||||||||||||||
1833 | } executed 753 times by 1 test: end of block Executed by:
| 753 | ||||||||||||||||||||||||
1834 | - | |||||||||||||||||||||||||
1835 | - | |||||||||||||||||||||||||
1836 | - | |||||||||||||||||||||||||
1837 | - | |||||||||||||||||||||||||
1838 | - | |||||||||||||||||||||||||
1839 | - | |||||||||||||||||||||||||
1840 | - | |||||||||||||||||||||||||
1841 | static void | - | ||||||||||||||||||||||||
1842 | hold_file (COLUMN *p) | - | ||||||||||||||||||||||||
1843 | { | - | ||||||||||||||||||||||||
1844 | COLUMN *q; | - | ||||||||||||||||||||||||
1845 | int i; | - | ||||||||||||||||||||||||
1846 | - | |||||||||||||||||||||||||
1847 | if (!parallel_files
| 284-3084 | ||||||||||||||||||||||||
1848 | for (q = column_vector, i = columns; i
| 3084-6132 | ||||||||||||||||||||||||
1849 | { | - | ||||||||||||||||||||||||
1850 | if (storing_columns
| 2832-3300 | ||||||||||||||||||||||||
1851 | q->status = FF_FOUND; executed 2832 times by 1 test: q->status = FF_FOUND; Executed by:
| 2832 | ||||||||||||||||||||||||
1852 | else | - | ||||||||||||||||||||||||
1853 | q->status = ON_HOLD; executed 3300 times by 1 test: q->status = ON_HOLD; Executed by:
| 3300 | ||||||||||||||||||||||||
1854 | } | - | ||||||||||||||||||||||||
1855 | else | - | ||||||||||||||||||||||||
1856 | p->status = ON_HOLD; executed 284 times by 1 test: p->status = ON_HOLD; Executed by:
| 284 | ||||||||||||||||||||||||
1857 | - | |||||||||||||||||||||||||
1858 | p->lines_to_print = 0; | - | ||||||||||||||||||||||||
1859 | --files_ready_to_read; | - | ||||||||||||||||||||||||
1860 | } executed 3368 times by 1 test: end of block Executed by:
| 3368 | ||||||||||||||||||||||||
1861 | - | |||||||||||||||||||||||||
1862 | - | |||||||||||||||||||||||||
1863 | - | |||||||||||||||||||||||||
1864 | - | |||||||||||||||||||||||||
1865 | static void | - | ||||||||||||||||||||||||
1866 | reset_status (void) | - | ||||||||||||||||||||||||
1867 | { | - | ||||||||||||||||||||||||
1868 | int i = columns; | - | ||||||||||||||||||||||||