/
githubmirror
/
libcap-ng
Обзор
Документация
Войти
/
githubmirror
/
libcap-ng
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
utils/cap-audit/classify_app.h
15 строк
320 B
Steve Grubb
Audit utility license notices
03 авг 2026, 01:38
03 авг 2026, 01:38
38b19c1
Код
Авторство
О чём код?
// SPDX-License-Identifier: GPL-2.0-or-later // Copyright (c) 2026 Red Hat Inc. #ifndef CAP_AUDIT_CLASSIFY_APP_H #define CAP_AUDIT_CLASSIFY_APP_H #include "../gcc-attributes.h" typedef enum { UNSUPPORTED, ELF, PYTHON } type_t; type_t classify_app(const char *exe) __attr_access ((__read_only__, 1)) __wur; #endif