mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-06-17 21:59:05 +00:00
14 lines
268 B
C
14 lines
268 B
C
![]() |
// 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 */
|