X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=diff.h;h=2cced530fa60ad7206b2cdb1b2509f42469e8f73;hb=9673198ee867cea4ed70d2cf54c1a2eb8f27bb46;hp=a06f959938d1313e45daa610a1f3eb71b4c3f835;hpb=405a99a67f4e9d42ea5f31322dcd23020e499f2f;p=git.git diff --git a/diff.h b/diff.h index a06f95993..2cced530f 100644 --- a/diff.h +++ b/diff.h @@ -69,6 +69,17 @@ struct diff_options { add_remove_fn_t add_remove; }; +enum color_diff { + DIFF_RESET = 0, + DIFF_PLAIN = 1, + DIFF_METAINFO = 2, + DIFF_FRAGINFO = 3, + DIFF_FILE_OLD = 4, + DIFF_FILE_NEW = 5, + DIFF_COMMIT = 6, +}; +const char *diff_get_color(int diff_use_color, enum color_diff ix); + extern const char mime_boundary_leader[]; extern void diff_tree_setup_paths(const char **paths, struct diff_options *);