Move to kernel style SPDX license identifiers
[lttng-ust.git] / liblttng-ust / string-utils.h
CommitLineData
e85a0294 1/*
c0c0989a 2 * SPDX-License-Identifier: MIT
e85a0294 3 *
c0c0989a 4 * Copyright (C) 2017 Philippe Proulx <pproulx@efficios.com>
e85a0294
PP
5 */
6
c0c0989a
MJ
7#ifndef _STRING_UTILS_H
8#define _STRING_UTILS_H
9
e85a0294 10#include <stdbool.h>
b4051ad8 11#include <stddef.h>
e85a0294
PP
12
13bool strutils_is_star_glob_pattern(const char *pattern);
14bool strutils_is_star_at_the_end_only_glob_pattern(const char *pattern);
15bool strutils_star_glob_match(const char *pattern, size_t pattern_len,
16 const char *candidate, size_t candidate_len);
17
18#endif /* _STRING_UTILS_H */
This page took 0.023764 seconds and 4 git commands to generate.