X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=diff.h;h=c64880cdb1022526371ddcd98bcb9d2221c4ca0c;hb=001d4a27dbfaaa59c25dc35dafc69bd9b9bc21d3;hp=40a6757dc874ebd1b81b0bf22b561f38d71ad70e;hpb=367cec1c024c3849cb32eaac15884a4adfefe1de;p=git.git diff --git a/diff.h b/diff.h index 40a6757d..c64880cd 100644 --- a/diff.h +++ b/diff.h @@ -4,6 +4,10 @@ #ifndef DIFF_H #define DIFF_H +#define DIFF_FILE_CANON_MODE(mode) \ + (S_ISREG(mode) ? (S_IFREG | ce_permissions(mode)) : \ + S_ISLNK(mode) ? S_IFLNK : S_IFDIR) + extern void diff_addremove(int addremove, unsigned mode, const unsigned char *sha1, @@ -29,17 +33,21 @@ extern void diff_unmerge(const char *path); extern int diff_scoreopt_parse(const char *opt); #define DIFF_SETUP_REVERSE 1 +#define DIFF_SETUP_USE_CACHE 2 +#define DIFF_SETUP_USE_SIZE_CACHE 4 + extern void diff_setup(int flags); #define DIFF_DETECT_RENAME 1 #define DIFF_DETECT_COPY 2 -extern void diffcore_rename(int rename_copy, int minimum_score); - #define DIFF_PICKAXE_ALL 1 -extern void diffcore_pickaxe(const char *needle, int opts); -extern void diffcore_pathspec(const char **pathspec); +extern void diffcore_std(const char **paths, + int detect_rename, int rename_score, + const char *pickaxe, int pickaxe_opts, + int break_opt, + const char *orderfile); extern int diff_queue_is_empty(void);