You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
399 B

// SPDX-License-Identifier: MIT
// Copyright (c) 2019, Guilherme Agostinelli
// Ported from https://github.com/guilhermeagostinelli/levenshtein/blob/master/levenshtein.cpp
#ifndef CPL_LEVENSHTEIN_H
#define CPL_LEVENSHTEIN_H
#include "cpl_port.h"
size_t CPL_DLL CPLLevenshteinDistance(const char *word1, const char *word2,
bool transpositionAllowed);
#endif