1 2 3 4 5 6 7 8 9 10 11 12 13
// Copyright (c) 2023 Anton Zhiyanov, MIT License // https://github.com/nalgeon/sqlean // Fuzzy string matching and phonetics. #ifndef FUZZY_EXTENSION_H #define FUZZY_EXTENSION_H #include "sqlite3ext.h" int fuzzy_init(sqlite3* db); #endif /* FUZZY_EXTENSION_H */