summaryrefslogtreecommitdiff
path: root/src/patch_parse.h
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@github.com>2016-08-23 23:38:39 -0500
committerEdward Thomson <ethomson@github.com>2016-08-24 09:08:57 -0500
commitb859faa61ce3f1fda5c29ac1e72a3d58fee2ede6 (patch)
tree976a27f8827db4200a172720b547fbf7ec1db119 /src/patch_parse.h
parentc60210d36780a39db669e52d6d592d339c6a2ed3 (diff)
downloadlibgit2-ethomson/patch_from_diff.tar.gz
Teach `git_patch_from_diff` about parsed diffsethomson/patch_from_diff
Ensure that `git_patch_from_diff` can return the patch for parsed diffs, not just generate a patch for a generated diff.
Diffstat (limited to 'src/patch_parse.h')
-rw-r--r--src/patch_parse.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/patch_parse.h b/src/patch_parse.h
index da56dad7c..99eb4587b 100644
--- a/src/patch_parse.h
+++ b/src/patch_parse.h
@@ -51,4 +51,6 @@ extern int git_patch_parse(
git_patch **out,
git_patch_parse_ctx *ctx);
+extern int git_patch_parsed_from_diff(git_patch **, git_diff *, size_t);
+
#endif