OpenVAS Scanner 23.23.1
strutils.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2023 Greenbone AG
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later
4 */
5
6#ifndef MISC_STRUTILS_H
7#define MISC_STRUTILS_H
8
9#include <glib.h>
10
11int
12str_match (const gchar *, const gchar *, int);
13
14#endif
int str_match(const gchar *, const gchar *, int)
Matches a string against a pattern.
Definition strutils.c:22