Staging
v0.5.1
https://github.com/git/git
Revision 3a0f269e7c82aa3a87323cb7ae04ac5f129f036b authored by Junio C Hamano on 23 May 2016, 22:02:48 UTC, committed by Junio C Hamano on 23 May 2016, 22:02:48 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent f4d7b2e
Raw File
Tip revision: 3a0f269e7c82aa3a87323cb7ae04ac5f129f036b authored by Junio C Hamano on 23 May 2016, 22:02:48 UTC
Git 2.9-rc0
Tip revision: 3a0f269
levenshtein.h
#ifndef LEVENSHTEIN_H
#define LEVENSHTEIN_H

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

#endif
back to top