Move all sources to 'src/'
[lttng-ust.git] / src / liblttng-ust / string-utils.h
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright (C) 2017 Philippe Proulx <pproulx@efficios.com>
5 */
6
7 #ifndef _STRING_UTILS_H
8 #define _STRING_UTILS_H
9
10 #include <stdbool.h>
11 #include <stddef.h>
12
13 bool strutils_is_star_glob_pattern(const char *pattern)
14 __attribute__((visibility("hidden")));
15
16 bool strutils_is_star_at_the_end_only_glob_pattern(const char *pattern)
17 __attribute__((visibility("hidden")));
18
19 bool strutils_star_glob_match(const char *pattern, size_t pattern_len,
20 const char *candidate, size_t candidate_len)
21 __attribute__((visibility("hidden")));
22
23 #endif /* _STRING_UTILS_H */
This page took 0.042048 seconds and 4 git commands to generate.