2005-04-26 18:25:05 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2005 Junio C Hamano
|
|
|
|
*/
|
2005-04-26 03:22:47 +02:00
|
|
|
#ifndef DIFF_H
|
|
|
|
#define DIFF_H
|
|
|
|
|
2005-04-27 18:21:00 +02:00
|
|
|
extern void diff_addremove(int addremove,
|
|
|
|
unsigned mode,
|
|
|
|
const unsigned char *sha1,
|
|
|
|
const char *base,
|
|
|
|
const char *path);
|
|
|
|
|
|
|
|
extern void diff_change(unsigned mode1, unsigned mode2,
|
|
|
|
const unsigned char *sha1,
|
|
|
|
const unsigned char *sha2,
|
|
|
|
const char *base, const char *path);
|
|
|
|
|
2005-05-23 23:55:33 +02:00
|
|
|
extern void diff_helper_input(unsigned mode1,
|
|
|
|
unsigned mode2,
|
|
|
|
const unsigned char *sha1,
|
|
|
|
const unsigned char *sha2,
|
|
|
|
const char *path1,
|
|
|
|
int status,
|
|
|
|
int score,
|
|
|
|
const char *path2);
|
2005-05-22 04:42:18 +02:00
|
|
|
|
2005-04-27 18:21:00 +02:00
|
|
|
extern void diff_unmerge(const char *path);
|
|
|
|
|
2005-05-20 04:00:36 +02:00
|
|
|
extern int diff_scoreopt_parse(const char *opt);
|
|
|
|
|
2005-05-28 00:54:37 +02:00
|
|
|
#define DIFF_SETUP_REVERSE 1
|
2005-05-28 00:56:38 +02:00
|
|
|
#define DIFF_SETUP_USE_CACHE 2
|
|
|
|
#define DIFF_SETUP_USE_SIZE_CACHE 4
|
2005-05-28 00:54:37 +02:00
|
|
|
extern void diff_setup(int flags);
|
2005-04-26 03:22:47 +02:00
|
|
|
|
2005-05-22 19:04:37 +02:00
|
|
|
#define DIFF_DETECT_RENAME 1
|
|
|
|
#define DIFF_DETECT_COPY 2
|
|
|
|
|
|
|
|
extern void diffcore_rename(int rename_copy, int minimum_score);
|
|
|
|
|
2005-05-28 00:55:28 +02:00
|
|
|
#define DIFF_PICKAXE_ALL 1
|
|
|
|
extern void diffcore_pickaxe(const char *needle, int opts);
|
|
|
|
|
2005-05-22 19:04:37 +02:00
|
|
|
extern void diffcore_pathspec(const char **pathspec);
|
2005-05-22 04:40:36 +02:00
|
|
|
|
|
|
|
extern int diff_queue_is_empty(void);
|
|
|
|
|
2005-05-28 00:54:37 +02:00
|
|
|
#define DIFF_FORMAT_HUMAN 0
|
|
|
|
#define DIFF_FORMAT_MACHINE 1
|
|
|
|
#define DIFF_FORMAT_PATCH 2
|
|
|
|
#define DIFF_FORMAT_NO_OUTPUT 3
|
|
|
|
|
2005-05-23 23:55:33 +02:00
|
|
|
extern void diff_flush(int output_style, int resolve_rename_copy);
|
2005-04-26 03:22:47 +02:00
|
|
|
|
|
|
|
#endif /* DIFF_H */
|