Revision 38cc7ab8144e111b47ac0ad3fcf6cb70d546e473 authored by Junio C Hamano on 24 October 2005, 22:11:47 UTC, committed by Junio C Hamano on 24 October 2005, 22:11:47 UTC
What we list as "Ignored files" are not "ignored".  Rather, it
is the list of "not listed in the to-be-ignored files, but
exists -- you may be forgetting to add them".

Pointed out by Daniel.

Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 7744f3b
Raw File
count-delta.h
/*
 * 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
back to top