Sign in
gem5
/
arm
/
linux
/
c18475a41a13504928fc57e423f42e264844c5ad
/
.
/
tools
/
perf
/
util
/
levenshtein.h
blob: b0fcb6d8a881d88b021cfcd7e1a08805b006ed3d [
file
] [
log
] [
blame
]
#ifndef
__PERF_LEVENSHTEIN_H
#define
__PERF_LEVENSHTEIN_H
int
levenshtein
(
const
char
*
string1
,
const
char
*
string2
,
int
swap_penalty
,
int
substition_penalty
,
int
insertion_penalty
,
int
deletion_penalty
);
#endif
/* __PERF_LEVENSHTEIN_H */