https://github.com/git/git
Revision bb52d22ebbc6d8792d3a016e6e89fd6e39c7a39f authored by Junio C Hamano on 18 September 2012, 20:32:39 UTC, committed by Junio C Hamano on 18 September 2012, 20:32:39 UTC
This reverts commit 2162bd8cc461d6c3a12ab81c5db5a44bf5ecabc3; a
two-patch series to replace it will follow.
1 parent 2162bd8
Raw File
Tip revision: bb52d22ebbc6d8792d3a016e6e89fd6e39c7a39f authored by Junio C Hamano on 18 September 2012, 20:32:39 UTC
Revert "archive-zip: support UTF-8 paths"
Tip revision: bb52d22
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