Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Smith <whydoubt@gmail.com>2017-05-24 08:15:37 +0300
committerJunio C Hamano <gitster@pobox.com>2017-05-25 07:08:23 +0300
commitbd481de713cb59a57f5f988b9bc46550c954dc45 (patch)
tree9ffb3af28b05c08e58b2c3d4021f6c3f766f9984 /blame.h
parent09002f1b31482dfbd0f471cd3614d542ea7a77a4 (diff)
blame: move entry prepend to libgit
Signed-off-by: Jeff Smith <whydoubt@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'blame.h')
-rw-r--r--blame.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/blame.h b/blame.h
index 76fd8efe15..a6c915c277 100644
--- a/blame.h
+++ b/blame.h
@@ -170,4 +170,6 @@ extern const char *blame_nth_line(struct blame_scoreboard *sb, long lno);
extern void init_scoreboard(struct blame_scoreboard *sb);
extern void setup_scoreboard(struct blame_scoreboard *sb, const char *path, struct blame_origin **orig);
+extern struct blame_entry *blame_entry_prepend(struct blame_entry *head, long start, long end, struct blame_origin *o);
+
#endif /* BLAME_H */