myMPD
Internal API documentation
Loading...
Searching...
No Matches
search_fuzzy.h
Go to the documentation of this file.
1/*
2 SPDX-License-Identifier: GPL-3.0-or-later
3 myMPD (c) 2018-2026 Juergen Mang <mail@jcgames.de>
4 https://github.com/jcorporation/mympd
5*/
6
10
11#ifndef MYMPD_LIB_SEARCH_FUZZY_H
12#define MYMPD_LIB_SEARCH_FUZZY_H
13
14#include <stdbool.h>
15#include <stddef.h>
16
17bool mympd_search_fuzzy_match(const char *haystack, size_t haystack_len,
18 const char *needle, size_t needle_len);
19
20#endif
bool mympd_search_fuzzy_match(const char *haystack, size_t haystack_len, const char *needle, size_t needle_len)
Definition search_fuzzy.c:35