/
githubmirror
/
libcap-ng
Обзор
Документация
Войти
/
githubmirror
/
libcap-ng
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
utils/filecap-path.h
24 строки
653 B
Steve Grubb
Annotate utility helper contracts
28 май 2026, 21:35
28 май 2026, 21:35
cbd447b
Код
Авторство
О чём код?
/* * filecap-path.h - PATH parsing helpers for filecap * Copyright (c) 2026 Red Hat Inc. * All Rights Reserved. * * This software may be freely redistributed and/or modified under the * terms of the GNU General Public License as published by the Free * Software Foundation; either version 2, or (at your option) any * later version. */ #ifndef FILECAP_PATH_H #define FILECAP_PATH_H #include "gcc-attributes.h" typedef int (*filecap_path_cb)(const char *entry, void *data) __attr_access ((__read_only__, 1)); int filecap_foreach_path(const char *path_env, filecap_path_cb cb, void *data) __attr_access ((__read_only__, 1)) __wur; #endif