1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:07:36 +00:00

AK: Add FuzzyMatch header

This patch adds a header containing the fuzzy match algorithm
previously used in Assistant. The algorithm was moved to AK
since there are many places where a search may benefit from fuzzyness.
This commit is contained in:
faxe1008 2022-04-16 22:01:20 +02:00 committed by Linus Groh
parent 1074c399f3
commit b8bd667782
4 changed files with 22 additions and 36 deletions

View file

@ -5,7 +5,7 @@
*/
#include "Providers.h"
#include "FuzzyMatch.h"
#include <AK/FuzzyMatch.h>
#include <AK/LexicalPath.h>
#include <AK/URL.h>
#include <LibCore/DirIterator.h>