Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tonytonyjan/libjaro
jaro winkler distance
https://github.com/tonytonyjan/libjaro
Last synced: about 2 months ago
JSON representation
jaro winkler distance
- Host: GitHub
- URL: https://github.com/tonytonyjan/libjaro
- Owner: tonytonyjan
- Created: 2015-05-16T15:43:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-29T20:34:13.000Z (about 9 years ago)
- Last Synced: 2024-04-09T21:30:11.302Z (9 months ago)
- Language: C
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
#includeint main(){
jaro_winkler_distance("martha", "marhta"); // 0.9611
return 0;
}
```