Revision 5f38e5eccb4dbcbd87fd6df9dec9939e310bcc9d authored by Ralf Thielow on 24 September 2012, 17:16:21 UTC, committed by Ralf Thielow on 27 September 2012, 18:58:51 UTC
Noticed-by: Sascha Cunz <sascha-ml@babbelbox.org>
Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
1 parent 871e293
Raw File
levenshtein.h
#ifndef LEVENSHTEIN_H
#define LEVENSHTEIN_H

int levenshtein(const char *string1, const char *string2,
	int swap_penalty, int substitution_penalty,
	int insertion_penalty, int deletion_penalty);

#endif
back to top