Fix: timer_expire_entry changed in 4.19.312
[lttng-modules.git] / lttng-string-utils.h
1 /* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1) */
2 #ifndef _LTTNG_STRING_UTILS_H
3 #define _LTTNG_STRING_UTILS_H
4
5 /*
6 * Copyright (C) 2017 Philippe Proulx <pproulx@efficios.com>
7 */
8
9 typedef char (*strutils_get_char_at_cb)(size_t, void *);
10
11 bool strutils_is_star_glob_pattern(const char *pattern);
12 bool strutils_is_star_at_the_end_only_glob_pattern(const char *pattern);
13 bool strutils_star_glob_match(const char *pattern, size_t pattern_len,
14 const char *candidate, size_t candidate_len);
15 bool strutils_star_glob_match_char_cb(
16 strutils_get_char_at_cb pattern_get_char_at_cb,
17 void *pattern_get_char_at_cb_data,
18 strutils_get_char_at_cb candidate_get_char_at_cb,
19 void *candidate_get_char_at_cb_data);
20
21 #endif /* _LTTNG_STRING_UTILS_H */
This page took 0.028771 seconds and 4 git commands to generate.