X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;ds=sidebyside;f=diff.h;h=3027974c1ec74217a58345b4ab48e673ee3db710;hb=3a4b3f269c4ba1eebd5ab7206ee0915667b20cc8;hp=da4bd421fe4ab21fd48f1d423e77963a0598c5e4;hpb=6973dcaee76ef7b7bfcabd2f26e76205aae07858;p=git.git diff --git a/diff.h b/diff.h index da4bd421..3027974c 100644 --- a/diff.h +++ b/diff.h @@ -28,9 +28,12 @@ struct diff_options { with_raw:1, with_stat:1, tree_in_recursive:1, + binary:1, full_index:1, silent_on_remove:1, - find_copies_harder:1; + find_copies_harder:1, + summary:1; + int context; int break_opt; int detect_rename; int line_termination; @@ -75,6 +78,8 @@ struct combine_diff_path { extern void show_combined_diff(struct combine_diff_path *elem, int num_parent, int dense, struct rev_info *); +extern void diff_tree_combined(const unsigned char *sha1, const unsigned char parent[][20], int num_parent, int dense, struct rev_info *rev); + extern void diff_tree_combined_merge(const unsigned char *sha1, int, struct rev_info *); extern void diff_addremove(struct diff_options *, @@ -171,4 +176,6 @@ extern const char *diff_unique_abbrev(const unsigned char *, int); extern int run_diff_files(struct rev_info *revs, int silent_on_removed); +extern int run_diff_index(struct rev_info *revs, int cached); + #endif /* DIFF_H */