Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __PERF_LEVENSHTEIN_H
0003 #define __PERF_LEVENSHTEIN_H
0004 
0005 int levenshtein(const char *string1, const char *string2,
0006     int swap_penalty, int substition_penalty,
0007     int insertion_penalty, int deletion_penalty);
0008 
0009 #endif /* __PERF_LEVENSHTEIN_H */