diff options
author | Jeff Smith <whydoubt@gmail.com> | 2017-05-24 00:15:33 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-25 13:08:22 +0900 |
commit | f5dd754c36f7d9cc7dd4c3f1a22e0e4a557b2021 (patch) | |
tree | 1aaed09c905f168d3c02eda686df00f1f6b5be93 /blame.h | |
parent | dc076ae5d9fe8c2fbf238b265c1bc1f6f089fd16 (diff) | |
download | git-f5dd754c36f7d9cc7dd4c3f1a22e0e4a557b2021.tar.gz |
blame: move origin-related methods 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.h | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -140,4 +140,19 @@ struct blame_scoreboard { void *found_guilty_entry_data; }; +/* + * Origin is refcounted and usually we keep the blob contents to be + * reused. + */ +static inline struct blame_origin *blame_origin_incref(struct blame_origin *o) +{ + if (o) + o->refcnt++; + return o; +} +extern void blame_origin_decref(struct blame_origin *o); + +extern struct blame_origin *make_origin(struct commit *commit, const char *path); +extern struct blame_origin *get_origin(struct commit *commit, const char *path); + #endif /* BLAME_H */ |