mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-15 07:09:43 +03:00
11bd6c3d68
A StringView is sufficient here. This also removes the declaration of fuzzy_match_recursive from the header, as it's only needed from within the implementation file.
24 lines
377 B
C++
24 lines
377 B
C++
/*
|
|
* Copyright (c) 2021, Spencer Dixon <spencercdixon@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/StringView.h>
|
|
|
|
namespace AK {
|
|
|
|
struct FuzzyMatchResult {
|
|
bool matched { false };
|
|
int score { 0 };
|
|
};
|
|
|
|
FuzzyMatchResult fuzzy_match(StringView needle, StringView haystack);
|
|
|
|
}
|
|
|
|
using AK::fuzzy_match;
|
|
using AK::FuzzyMatchResult;
|