1 #ifndef __EDIT_DIST_H
2 #define __EDIT_DIST_H
3 /**
4  * Modified levenshtein distance calculation
5  *
6  * This program can be used, redistributed or modified under any of
7  * Boost Software License 1.0, GPL v2 or GPL v3
8  * See the file COPYING for details.
9  *
10  * $Id$
11  *
12  * Copyright (C) 2014 kikairoya <kikairoya@gmail.com>
13  * Copyright (C) 2014 Jesse Kornblum <research@jessekornblum.com>
14  */
15 
16 int edit_distn(const char *s1, size_t s1len, const char *s2, size_t s2len);
17 
18 #endif  // ifndef __EDIT_DIST_H
19