Blob


1 /* Common parts for printing diff output */
2 /*
3 * Copyright (c) 2020 Neels Hofmeyr <neels@hofmeyr.de>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
18 #include <diff/diff_output.h>
20 void
21 diff_output_lines(FILE *dest, const char *prefix, struct diff_atom *start_atom, unsigned int count)
22 {
23 struct diff_atom *atom;
24 foreach_diff_atom(atom, start_atom, count) {
25 fprintf(dest, "%s", prefix);
26 int i;
27 unsigned int len = atom->len;
28 if (len && atom->at[len - 1] == '\n') {
29 len--;
30 if (len && atom->at[len - 1] == '\r')
31 len--;
32 }
34 for (i = 0; i < len; i++) {
35 char c = atom->at[i];
36 if ((c < 0x20 || c >= 0x7f) && c != '\t')
37 fprintf(dest, "\\x%02x", (unsigned char)c);
38 else
39 fprintf(dest, "%c", c);
40 }
41 fprintf(dest, "\n");
42 }
43 }