File tree Expand file tree Collapse file tree 1 file changed +0
-24
lines changed
src/Levenshtein/Levenshtein-c Expand file tree Collapse file tree 1 file changed +0
-24
lines changed Original file line number Diff line number Diff line change 1- /*
2- * Levenshtein.c
3- * @(#) $Id: Levenshtein.c,v 1.41 2005/01/13 20:05:36 yeti Exp $
4- * Python extension computing Levenshtein distances, string similarities,
5- * median strings and other goodies.
6- *
7- * Copyright (C) 2002-2003 David Necas (Yeti) <yeti@physics.muni.cz>.
8- *
9- * This program is free software; you can redistribute it and/or modify it
10- * under the terms of the GNU General Public License as published by the Free
11- * Software Foundation; either version 2 of the License, or (at your option)
12- * any later version.
13- *
14- * This program is distributed in the hope that it will be useful, but WITHOUT
15- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17- * more details.
18- *
19- * You should have received a copy of the GNU General Public License along
20- * with this program; if not, write to the Free Software Foundation, Inc.,
21- * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22- **/
23-
241#include < limits>
252#include < math.h>
263#include < string.h>
27- /* for debugging */
284#include < stdint.h>
295#include < stdio.h>
306
You can’t perform that action at this time.
0 commit comments