/
githubmirror
/
libcap-ng
Обзор
Документация
Войти
/
githubmirror
/
libcap-ng
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/capng_print_caps_text.3
25 строк
1 KB
Steve Grubb
Update documentation and fix API issue
22 мар 2026, 21:22
22 мар 2026, 21:22
2f43777
Код
Авторство
О чём код?
.TH "CAPNG_PRINT_CAPS_TEXT" "3" "March 2026" "Red Hat" "Libcap-ng API" .SH NAME capng_print_caps_text \- print names of values for capabilities set .SH "SYNOPSIS" .B #include <cap-ng.h> .sp char *capng_print_caps_text(capng_print_t where, capng_type_t which); .SH "DESCRIPTION" capng_print_caps_text will create a text string representation of the internal capability set specified. The representation can be sent to either stdout or a buffer by passing CAPNG_PRINT_STDOUT or CAPNG_PRINT_BUFFER respectively for the where parameter. If the option was for a buffer, this function will malloc a buffer that the caller must free. The legal values for the which parameter is CAPNG_EFFECTIVE, CAPNG_PERMITTED, CAPNG_INHERITABLE, CAPNG_BOUNDING_SET, or CAPNG_AMBIENT. .SH "RETURN VALUE" If CAPNG_PRINT_BUFFER was selected for where, this will be the text buffer and NULL on failure. Don't forget to free it. If CAPNG_PRINT_STDOUT was selected then this value will be NULL no matter what. .SH "SEE ALSO" .BR capng_print_caps_numeric (3), .BR capabilities (7) .SH AUTHOR Steve Grubb