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>
		
			
				
	
	
		
			11 lines
		
	
	
		
			196 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 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
 |