| 41 | proper_name ("David MacKenzie") |
| 42 | |
| 43 | static void |
| 44 | swap_lines (struct linebuffer **a, struct linebuffer **b) |
| 45 | { |
| 46 | struct linebuffer *tmp = *a; |
| 47 | *a = *b; |
| 48 | *b = tmp; |
| 49 | } |
| 50 | |
| 51 | /* Number of fields to skip on each line when doing comparisons. */ |
| 52 | static idx_t skip_fields = false; |