Added support for fuzzy searching

This commit is contained in:
Scoopta
2019-11-21 01:01:27 -08:00
parent c8d052be6a
commit 50838d3d98
4 changed files with 115 additions and 5 deletions

View File

@@ -21,6 +21,7 @@
#include <math.h>
#include <time.h>
#include <stdarg.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
@@ -32,4 +33,10 @@ void utils_sleep_millis(time_t millis);
char* utils_concat(size_t arg_count, ...);
size_t utils_min(size_t n1, size_t n2);
size_t utils_min3(size_t n1, size_t n2, size_t n3);
size_t utils_distance(const char* str1, const char* str2);
#endif