spmenu/libs/match.h

11 lines
274 B
C
Raw Permalink Normal View History

2023-05-14 00:21:16 +02:00
/* See LICENSE file for copyright and license details. */
2023-07-05 01:40:35 +02:00
#if USEREGEX
#include "regex/regex.h"
#endif
2023-03-13 21:21:40 +01:00
static void fuzzymatch(void);
static void match(void);
2023-07-05 01:40:35 +02:00
static int matchregex(const char *t, const char *itt);
2023-03-13 21:21:40 +01:00
static int compare_distance(const void *a, const void *b);