aboutsummaryrefslogtreecommitdiffstats
path: root/libpatch_previous_hunk.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-01-09 22:04:24 +0100
committerMattias Andrée <maandree@kth.se>2024-01-09 22:04:24 +0100
commitae850b1ac755f471beac4dbfef4654fe3fbaaae9 (patch)
tree319e7f7f1b99cd1ee75e100f0a29b0f7c827ccea /libpatch_previous_hunk.c
downloadlibpatch-ae850b1ac755f471beac4dbfef4654fe3fbaaae9.tar.gz
libpatch-ae850b1ac755f471beac4dbfef4654fe3fbaaae9.tar.bz2
libpatch-ae850b1ac755f471beac4dbfef4654fe3fbaaae9.tar.xz
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libpatch_previous_hunk.c')
-rw-r--r--libpatch_previous_hunk.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/libpatch_previous_hunk.c b/libpatch_previous_hunk.c
new file mode 100644
index 0000000..19ab964
--- /dev/null
+++ b/libpatch_previous_hunk.c
@@ -0,0 +1,34 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+
+
+size_t
+libpatch_previous_hunk(struct libpatch_diff2 *diff, size_t *position,
+ size_t *ai, size_t *bi, size_t *an_out, size_t *bn_out, int skip_context)
+{
+ size_t n;
+ int mask = skip_context ? 0x03 : ~0;
+
+ while (*position && !(diff[*position - 1].change & mask)) {
+ *position -= 1;
+ *ai -= (size_t)diff[*position].repetition;
+ *bi -= (size_t)diff[*position].repetition;
+ }
+
+ *an_out = 0;
+ *bn_out = 0;
+ n = 0;
+
+ while (*position && (diff[*position - 1].change & mask)) {
+ *position -= 1;
+ n += 1;
+ if (diff[*position].change != LIBPATCH_DIFF2_FILE2_ONLY)
+ *an_out += (size_t)diff[*position].repetition;
+ if (diff[*position].change != LIBPATCH_DIFF2_FILE1_ONLY)
+ *bn_out += (size_t)diff[*position].repetition;
+ }
+
+ *ai -= *an_out;
+ *bi -= *bn_out;
+ return n;
+}