Dmitry V. Levin
b93d52fe3d
strace is now provided under the terms of the GNU Lesser General Public License version 2.1 or later, see COPYING for more details. strace test suite is now provided under the terms of the GNU General Public License version 2 or later, see tests/COPYING for more details.
20 lines
531 B
C
20 lines
531 B
C
/*
|
|
* Copyright (c) 2017 Nikolay Marchuk <marchuk.nikolay.a@gmail.com>
|
|
* Copyright (c) 2017-2018 The strace developers.
|
|
* All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
#ifndef STRACE_FILTER_H
|
|
#define STRACE_FILTER_H
|
|
|
|
struct number_set;
|
|
typedef int (*string_to_uint_func)(const char *);
|
|
|
|
void qualify_tokens(const char *str, struct number_set *set,
|
|
string_to_uint_func func, const char *name);
|
|
void qualify_syscall_tokens(const char *str, struct number_set *set);
|
|
|
|
#endif /* !STRACE_FILTER_H */
|