Staging
v0.5.1
https://github.com/git/git
Revision f371d3ea3ca7933df787230f2eb9b67901bde9d3 authored by Junio C Hamano on 08 December 2008, 01:34:14 UTC, committed by Junio C Hamano on 08 December 2008, 01:34:14 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 0e32126
Raw File
Tip revision: f371d3ea3ca7933df787230f2eb9b67901bde9d3 authored by Junio C Hamano on 08 December 2008, 01:34:14 UTC
Point "stale" 1.6.0.5 documentation from the main git documentation page
Tip revision: f371d3e
levenshtein.h
#ifndef LEVENSHTEIN_H
#define LEVENSHTEIN_H

int levenshtein(const char *string1, const char *string2,
	int swap_penalty, int substition_penalty,
	int insertion_penalty, int deletion_penalty);

#endif
back to top