mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
21 lines
304 B
C
21 lines
304 B
C
|
#pragma once
|
||
|
|
||
|
#include <AK/Forward.h>
|
||
|
|
||
|
namespace AK {
|
||
|
|
||
|
enum class CaseSensitivity {
|
||
|
CaseInsensitive,
|
||
|
CaseSensitive,
|
||
|
};
|
||
|
|
||
|
namespace StringUtils {
|
||
|
|
||
|
bool matches(const StringView& str, const StringView& mask, CaseSensitivity = CaseSensitivity::CaseInsensitive);
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
using AK::CaseSensitivity;
|