mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
355e76a4a3
Make it return copied source and insertion separately, so that later implementation of heuristics can use them more flexibly. This does not change the heuristics implemented in diffcore-rename nor diffcore-break in any way. Signed-off-by: Junio C Hamano <junkio@cox.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
10 lines
196 B
C
10 lines
196 B
C
/*
|
|
* Copyright (C) 2005 Junio C Hamano
|
|
*/
|
|
#ifndef COUNT_DELTA_H
|
|
#define COUNT_DELTA_H
|
|
|
|
int count_delta(void *, unsigned long,
|
|
unsigned long *src_copied, unsigned long *literal_added);
|
|
|
|
#endif
|