Sign in
googlers
/
jrn
/
git
/
ebc4a04e8437e704e40a1d35aea030dc03ec8e56
/
.
/
levenshtein.h
blob: 4105bf3549560acc7bd187b8a16fff2a5e739d09 [
file
] [
log
] [
blame
]
#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