Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
John Kacur | 8b40f52 | 2009-09-24 18:02:18 +0200 | [diff] [blame] | 2 | #ifndef __PERF_LEVENSHTEIN_H |
| 3 | #define __PERF_LEVENSHTEIN_H |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 4 | |
| 5 | int levenshtein(const char *string1, const char *string2, |
| 6 | int swap_penalty, int substition_penalty, |
| 7 | int insertion_penalty, int deletion_penalty); |
| 8 | |
John Kacur | 8b40f52 | 2009-09-24 18:02:18 +0200 | [diff] [blame] | 9 | #endif /* __PERF_LEVENSHTEIN_H */ |