mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
9517e6b843
begining -> beginning canonicalizations -> canonicalization comand -> command dewrapping -> unwrapping dirtyness -> dirtiness DISCLAMER -> DISCLAIMER explicitely -> explicitly feeded -> fed impiled -> implied madatory -> mandatory mimick -> mimic preceeding -> preceding reqeuest -> request substition -> substitution Signed-off-by: Junio C Hamano <gitster@pobox.com>
8 lines
203 B
C
8 lines
203 B
C
#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
|