quote-bot/levenshtein.h
2021-03-31 08:47:18 -04:00

7 lines
145 B
C

#ifndef LEVENSHTEIN_H
#define LEVENSHTEIN_H
int levenshtein(const char *s, const char *t);
#endif /* LEVENSHTEIN_H */