1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-20 13:26:08 +02:00
git/count-delta.h
Junio C Hamano 355e76a4a3 [PATCH] Tweak count-delta interface
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>
2005-06-03 11:23:03 -07:00

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