quote-bot/levenshtein.h

7 lines
120 B
C
Raw Normal View History

2021-03-09 01:39:19 -05:00
#ifndef LEVENSHTEIN_H
#define LEVENSHTEIN_H
int levenshtein(const char *s, const char *t);
#endif /* LEVENSHTEIN_H */