/
githubmirror
/
libcap-ng
Обзор
Документация
Войти
/
githubmirror
/
libcap-ng
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
utils/proc-sanitize.h
39 строк
1 KB
Steve Grubb
Annotate utility helper contracts
28 май 2026, 21:35
28 май 2026, 21:35
cbd447b
Код
Авторство
О чём код?
/* * proc-sanitize.h - Shared terminal sanitization helpers for proc text * Copyright (c) 2026 Steve Grubb * 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. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor * Boston, MA 02110-1335, USA. * * Authors: * Steve Grubb <sgrubb@redhat.com> */ #ifndef PROC_SANITIZE_H #define PROC_SANITIZE_H #include "gcc-attributes.h" char *sanitize_untrusted_field(const char *src) __attribute_malloc__ __attr_dealloc_free __attr_access ((__read_only__, 1)) __wur; int sanitize_untrusted_owned(char **s) __attr_access ((__read_write__, 1)) __wur; #endif