Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tonytonyjan/libjaro

jaro winkler distance
https://github.com/tonytonyjan/libjaro

Last synced: about 2 months ago
JSON representation

jaro winkler distance

Awesome Lists containing this project

README

        

[![Build Status](https://travis-ci.org/tonytonyjan/libjaro.svg?branch=master)](https://travis-ci.org/tonytonyjan/libjaro)

# Install

```
autoreconf -i
./configure
make
make install
```

# Usage

```c
#include
#include

int main(){
jaro_winkler_distance("martha", "marhta"); // 0.9611
return 0;
}
```